[백준] 2753번 윤년 _ 문제 풀이 Algorithm melonicedlatte Apr 17, 2021 1. 문제 https://www.acmicpc.net/problem/2753 2. 풀이 a = int(input()) print(1 if (not a%4 and a%100) or not a%400 else 0) PREVIOUS[백준] 2884번 알람 시계 _ 문제 풀이NEXT[백준] 15552번 빠른 A+B _ 문제 풀이