코딩/구름
[구름 1단계] 윤년
9chan
2022. 3. 15. 22:47
https://level.goorm.io/exam/43204/%EC%9C%A4%EB%85%84-leap-year/quiz/1
구름LEVEL
코딩테스트에서 가장 높은 비중을 차지하는 알고리즘 문제를 제작하고 풀이할 수 있는 온라인 저지 서비스입니다. 기업에서 선호하는 C, C++, 파이썬(Python), 자바(Java), 자바스크립트(Javascript) 이
level.goorm.io
year = int(input())
if (year % 4 == 0) and (year % 100 != 0) or (year % 400 == 0):
print("Leap Year")
else :
print("Not Leap Year")