반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
100점 미만이면 추첨대상자가 아니고, 100점 이상이면 추첨대상자, 최대 점수 초과하면 해커입니다.
3. 코드
import sys
input = sys.stdin.readline
max_score = [100, 100, 200, 200, 300, 300, 400, 400, 500]
score = list(map(int, input().split()))
total_score, hacker = 0, 0
for i in range(9):
if score[i] > max_score[i]:
hacker = 1
total_score += score[i]
if hacker:
print("hacker")
else:
print("draw" if total_score >= 100 else "none")
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 5666 Hot Dogs - 파이썬(Python) (0) | 2023.02.28 |
---|---|
[구현/수학] 백준 9366 삼각형 분류 - 파이썬(Python) (0) | 2023.02.27 |
[구현/수학] 백준 16504 종이접기 - 파이썬(Python) (0) | 2023.02.25 |
[구현/수학] 백준 11970 Fence Painting - 파이썬(Python) (0) | 2023.02.24 |
[구현/수학] 백준 9493 길면 기차, 기차는 빨라, 빠른 것은 비행기 - 파이썬(Python) (0) | 2023.02.23 |
댓글