Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TypeScript
- 동적계획법
- 디스코드 봇
- C언어로 쉽게 풀어쓴 자료구조
- 자료구조
- 파이썬
- 공부시간측정어플
- 갓생
- 백준
- popup
- 백준 7579
- 캠스터디
- discord.js
- react
- nodejs
- content script
- supabase
- 포도주시식
- background script
- Chrome Extension
- 백준 #7568번 #파이썬 #동적계획법
- 프로그래머스 #정수삼각형 #동적계획법
- 2156
- Message Passing
- X
- webpack
- 크롬 확장자
- 크롬 익스텐션
Archives
- Today
- Total
히치키치
[백준] 11399번 : ATM - Python(파이썬) 본문
풀이
코드
#https://www.acmicpc.net/problem/11399
N = int(input())
lists = list(map(int, input().split()))
total = 0
lists.sort()
for i in range(N):
for j in range(i + 1):
total += lists[j]
print(total)
'알고리즘 스터디' 카테고리의 다른 글
[백준] 10830 : 행렬 제곱 - Python(파이썬) (0) | 2021.04.06 |
---|---|
[백준] 2839번 : 설탕배달 - Python(파이썬) (0) | 2021.03.30 |
[백준] 16234번 : 인구이동 - Python(파이썬) (0) | 2021.03.29 |
[백준] 1939번 : 중량제한 - Python(파이썬) (0) | 2021.03.22 |
[백준] 1339번 : 단어수학 - Python(파이썬) (0) | 2021.03.22 |
Comments