Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129942 枫原万叶·原神·米哈游 判断闰年 C++ 通过 100 0 MS 248 KB 195 2024-01-27 14:37:57

Tests(12/12):


#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%4==0&&a%100!=0||a%400==0){ cout<<"Y" ; } else{ cout<<"N"; } return 0; }


测评信息: