지나가던 개발자
[Python] 백준 2822번(점수 계산) 문제 풀이 본문
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 정도인 것 같은데... 어쩌면 파이썬으로 풀어서 그럴지도 모른다. 갓-파이썬
'PS > Python' 카테고리의 다른 글
[Python] 백준 2877번(4와 7) 문제 풀이 (0) | 2022.10.07 |
---|---|
[Python] 백준 11718번(그대로 출력하기) 문제 풀이 (1) | 2022.09.25 |
[Python] 백준 11944번(NN) 문제 풀이 (0) | 2022.09.22 |
[Python] 백준 6219번(소수의 자격) 문제 풀이 (0) | 2022.09.18 |
[Python] 백준 2226번(이진수) 문제 풀이 (0) | 2022.09.18 |
Comments