-Code
def solution(idx, n):
if idx == 1 and n != 1 and n != 3:
return True
if idx == 2 and n != 6 and n != 8:
return True
if idx == 3 and n != 2 and n != 5:
return True
return False
flag = True
for i in range(1, 4):
n = int(input())
if solution(i, n):
flag = False
print("JAH" if flag else "EI")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32728번 Sõnakuulelik Tom (0) | 2024.11.23 |
---|---|
[백준/파이썬] 32661번 Airfare Grants (0) | 2024.11.22 |
[백준/파이썬] 1440번 타임머신 (1) | 2024.11.20 |
[백준/파이썬] 28932번 Префиксы-суффиксы (0) | 2024.11.19 |
[백준/파이썬] 32684번 장기 (0) | 2024.11.18 |