| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 325125 | 方相宜 | 【C1-8】判断闰年 | C++ | Wrong Answer | 0 | 1 MS | 244 KB | 164 | 2025-06-02 19:05:48 |
#include<iostream> using namespace std; int main(){ int n,g=0; cin>>n; g=n%10; if(g==5||g==0){ cout<<"yes"; }else{ cout<<"no"; } return 0; }