/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 21ms 3.121 MiB
#2 Accepted 21ms 2.926 MiB
#3 Accepted 23ms 3.059 MiB
#4 Accepted 21ms 3.105 MiB
#5 Wrong Answer 22ms 3.023 MiB

Code

y = int(input())

if y % 4 != 0:
	print("NO")
elif y % 4 == 0 and y % 100 != 0 and y % 400 == 0:
	print("YES")

Information

Submit By
Type
Submission
Problem
P1023 Happy new year 2024
Contest
Brain booster - 1
Language
Python 3 (Python 3.12.3)
Submit At
2023-12-31 13:30:45
Judged At
2024-10-03 14:06:35
Judged By
Score
60
Total Time
23ms
Peak Memory
3.121 MiB