[백준] #2822 점수 계산 python
2023. 2. 18. 06:00
https://www.acmicpc.net/problem/2822
📕 설명 📕
값들 중 큰 값 5개를 list에 넣고 tmp에 해당 값들을 넣고 최초 List로부터 기존의 index를 빼낸다.
🧑🏻💻 나의 풀이 🧑🏻💻
li = []
for _ in range(8):
li.append(int(input()))
res = sorted(li)[3:]
tmp = []
print(sum(res))
for i in res:
tmp.append(li.index(i)+1)
print(*sorted(tmp))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2846 오르막길 python (0) | 2023.02.20 |
---|---|
[백준] #2484 주사위 네 개 python (0) | 2023.02.19 |
[백준] #2789 유학 금지 python (0) | 2023.02.17 |
[백준] #2744 대소문자 바꾸기 python (0) | 2023.02.16 |
[백준] #2420 사파리월드 python (0) | 2023.02.15 |