Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
107455 |
张亦瑞 |
08判断是否为闰年 |
Python3 |
Wrong Answer |
32 MS |
3752 KB |
70 |
2025-01-17 21:39:31 |
Tests(0/11):
Code:
a=int(input())
if a%4 == 0:
print("yes")
else:
print("no")
Run Info:
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
yes