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