반응형
1) 첫 번째 코드
year = int(input())
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(1)
else:
print(0)
2) 두 번째 코드
year = int(input())
print('1') if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0)
else print('0')
3) 결과
// 결과
// 입력값
2000
// 출력값
1
// 입력값
1999
// 출력값
0
반응형
'Algorithm > baekjoon' 카테고리의 다른 글
[백준 2884 파이썬/python] 알람 시계 (0) | 2023.02.28 |
---|---|
[백준 14681 파이썬/python] 사분면 고르기 (0) | 2023.02.28 |
[백준 9498 파이썬/python] 시험 성적 (0) | 2023.02.28 |
[백준 1330 파이썬/python] 두 수 비교하기 (0) | 2023.02.27 |
[백준 10172 파이썬/python] 개 (0) | 2023.02.27 |