/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 15ms 3.109 MiB
#2 Accepted 15ms 2.898 MiB
#3 Accepted 15ms 3.027 MiB
#4 Accepted 15ms 3.062 MiB
#5 Accepted 15ms 2.898 MiB

Code

year=int(input())
if 1996< year < 2100:
    if year % 4 == 0:
        if year % 100 == 0:
            if year % 400 == 0:
                print("YES")
            else:
                print("NO")
        else:
            print("YES")
    else:
        print("NO")

Information

Submit By
Type
Submission
Problem
P1023 Happy new year 2024
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 14:26:47
Judged At
2024-11-11 03:43:35
Judged By
Score
100
Total Time
15ms
Peak Memory
3.109 MiB