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
- 사칙연산
- Database
- C
- 정렬
- Python
- misc
- 백준
- 그리디 알고리즘
- CTF
- Network
- SuNiNaTas
- Web
- 써니나타스
- cryptography
- HackCTF
- N0Named
- 문자열
- Forensics
- 인코그니토
- wargame
- Digital Forensics
- xcz.kr
- Web Hacking
- 구현
- writeup
- Incognito
- 수학
- Text
- MySQL
- 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