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
- SuNiNaTas
- 그리디 알고리즘
- Database
- misc
- Network
- Forensics
- CTF
- Web Hacking
- HackCTF
- writeup
- xcz.kr
- cryptography
- 정렬
- C
- php
- Incognito
- 사칙연산
- MySQL
- 수학
- Digital Forensics
- Text
- Python
- 구현
- Web
- 문자열
- wargame
- 인코그니토
- N0Named
- 써니나타스
- 백준
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2822번 점수 계산 본문
[Baekjoon/Python3] 2822번 점수 계산
score = [int(input()) for i in range(8)]
st_score = sorted(score, reverse=True)[0:5]
ns = []
for i in st_score:
ns.append(score.index(i) + 1)
ns.sort()
print(sum(st_score))
print(*ns)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2845번 파티가 끝나고 난 뒤 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 2839번 설탕 배달 (0) | 2020.12.04 |
[Baekjoon/Python3] 2775번 부녀회장이 될테야 (0) | 2020.12.04 |
[Baekjoon/Python3] 2754번 학점계산 (0) | 2020.12.04 |
[Baekjoon/Python3] 2753번 윤년 (0) | 2020.12.04 |
Comments