지나가던 개발자

[Python] 백준 2822번(점수 계산) 문제 풀이 본문

PS/Python

[Python] 백준 2822번(점수 계산) 문제 풀이

KwonYongHyeon 2022. 9. 25. 20:15

 

grade = [int(input()), int(input()), int(input()), int(input()), int(input()), int(input()), int(input()), int(input())]
print(sum(sorted(grade)[3:]))
toPrint = []
for i in sorted(grade)[3:]:
    toPrint.append(grade.index(i))
for i in sorted(toPrint):
    print(i+1, end=' ')

 

이게 왜 실버V? 아무리 높게 잡아도 브론즈2 정도인 것 같은데... 어쩌면 파이썬으로 풀어서 그럴지도 모른다. 갓-파이썬

Comments