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 | 31 |
Tags
- wargame
- SuNiNaTas
- MySQL
- 사칙연산
- misc
- 문자열
- N0Named
- Forensics
- 써니나타스
- Digital Forensics
- Database
- HackCTF
- Text
- cryptography
- writeup
- php
- Incognito
- Web Hacking
- C
- Python
- 구현
- Network
- 그리디 알고리즘
- 수학
- 정렬
- CTF
- Web
- 인코그니토
- 백준
- xcz.kr
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 11399번 ATM 본문
[Baekjoon/Python3] 11399번 ATM
n = int(input())
time = list(map(int, input().split()))
t = 0
res = 0
for i in range(n):
t += min(time)
res += t
time.remove(min(time))
print(res)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 11650번 좌표 정렬하기 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 11508번 2+1 세일 (0) | 2020.12.07 |
[Baekjoon/Python3] 11382번 꼬마 정민 (0) | 2020.12.07 |
[Baekjoon/Python3] 11365번 !밀비 급일 (0) | 2020.12.07 |
[Baekjoon/Python3] 11320번 삼각 무늬 - 1 (0) | 2020.12.07 |
Comments