일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 파이썬
- 백준
- 동적 계획법
- 자바
- python
- 그리디
- 정규식
- Zip
- dfs
- 카카오
- Combinations
- KAKAO BLIND RECRUITMENT
- divmod
- BFS
- programmers
- 수학
- 정렬
- backjoon
- lambda
- heapq
- 다익스트라
- 이분탐색
- Re
- 프로그래머스
- Set
- java
- DateTime
- 추석맞이 코딩챌린지
- 위클리 챌린지
- 재귀함수
Archives
- Today
- Total
상상쓰
[백준] 윤년 본문
https://www.acmicpc.net/problem/2753
2021년은 윤년이 아니다.
import sys
Y = int(sys.stdin.readline())
answer = 1 if Y % 4 == 0 and (Y % 100 != 0 or Y % 400 == 0) else 0
print(answer)
'Coding Test' 카테고리의 다른 글
[백준] 최소공배수 (0) | 2021.09.14 |
---|---|
[백준] 파도반 수열 (0) | 2021.09.14 |
[백준] 퇴사 (0) | 2021.09.14 |
[프로그래머스] 빛의 경로 사이클 (0) | 2021.09.13 |
[프로그래머스] 7주차_입실 퇴실 (0) | 2021.09.13 |
Comments