반응형
https://www.acmicpc.net/problem/17388
s, k, h = map(int, input().split())
if s + k + h >= 100:
print('OK')
else:
if min(s, k, h) == s:
print('Soongsil')
elif min(s, k, h) == k:
print('Korea')
else:
print('Hanyang')
어렵다 😂
반응형
'📚 Algorithm' 카테고리의 다른 글
[Python] 백준 5532번 방학숙제 (0) | 2021.07.18 |
---|---|
[Python] 백준 14928번 큰 수 (BIG) (0) | 2021.07.14 |
[Python] 백준 10039번 평균 점수 (0) | 2021.07.09 |
[Python] 백준 20499번 Darius님 한타 안 함? (0) | 2021.07.06 |
[Python] 백준 5893번 17배 (0) | 2021.07.02 |
댓글