24 条题解
-
2limingjie LV 8 @ 2022-1-2 14:45:36
#include <stdio.h> #include <iostream> #include <math.h> using namespace std; int main() { int n; cin >>n; if(n%4==0 && n%100 !=0) { cout <<"Y"; } else if(n%400 == 0) { cout <<"Y"; } else { cout <<"N"; } }
-
12023-6-25 14:40:29@
#include <iostream> #include <stdio.h> #include <iomanip> #include <math.h> using namespace std; const int N = 1e6 + 10; const int INF = 0x3f3f3f3f; int main() { int a; cin >> a; if( a / 100 != 0 && a / 4 == 0 ) { cout << "Y"; } else { cout << "N"; } return 0; }
-
02024-6-15 19:56:39@
#include<iostream> using namespace std; int main() { int a; cin >> a; cout << a % 10; return 0;
-
02024-5-19 15:13:11@
#include <iostream> using namespace std; const int N = 1e6 + 10; const int INF = 0x3f3f3f3f; int main() { int a; cin >> a; if( a / 100 != 0 && a / 4 == 0 ) { cout << "Y"; } else { cout << "N"; } return 0; }
-
02024-4-5 20:19:17@
#include <iostream> #include <cstdio> using namespace std; int main() { int a; cin >> a; if(a % 4 == 0) { cout<<"Y"; } else { cout<<"N"; }
return 0;
}
-
02023-5-23 20:11:56@
#include <iostream> #include <cmath> #include <iomanip> #include <stack> #include <algorithm> #include <string> #include <cstring> using namespace std; const int INF = 0x3f3f3f3f; int a; int main() { cin >> a; if (a % 4 == 0) { cout << "Y"; } else { cout << "N"; } return 0; }
-
02023-5-7 11:41:55@
#include<iostream> using namespace std; int main() { int a; char c; cin>>a; if(a%40&&a%100!=0&&a%4000) { cout<<"Y"; } else { cout<<"N"; } return 0; }
-
02023-5-7 11:41:04@
#include<iostream> using namespace std; int main() { int a; char c; cin>>a; if(a%40&&a%100!=0&&a%4000) { cout<<"Y"; } else { cout<<"N"; } return 0; }
-
02023-4-22 17:09:23@
#include<cstdio> #include<string> #include<bits/stdc++.h> #define LL long long using namespace std; const int INF=0x3f3f3f3f; const int N=2e5+10; int a; int main(){ cin>>a; if(a%100!=0&&a%4==0||a%400==0){ cout<<"Y"; }else{ cout<<"N"; } }
-
02023-4-21 21:10:29@
#include <iostream> using namespace std; const int INf=0x3f3f3f3f; const int N=2e4+10; int main(){ long long a; cin >>a; if( ( a%40 && a%100!=0 ) || ( a%4000 ) ) cout <<"Y"; else cout <<"N"; return 0; }
-
02023-4-4 20:50:57@
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%40&&n%100!=0||n%4000) cout<<"Y"; else cout<<"N"; return 0; }
-
02023-3-1 20:22:49@
#include<iostream> using namespace std; int main(){ int a; cin>>a; if (a%4==0) { cout << "Y"; } else { cout << "N"; }
return 0;
}
-
02023-1-26 16:15:10@
为什么非要那么多判断呢?
#include<iostream> 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; }
-
-22022-9-27 17:11:40@
#include <bits/stdc++.h>
using namespace std;
int main() { int a;
cin >> a; if (a % 4 == 0 && a % 100 != 0) { cout << "Y"; } else if (a % 400 == 0) { cout << "Y"; } else { cout << "N"; } return 0;
}
-
-22022-9-3 13:30:16@
#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; if (a % 4 == 0 && a % 100 != 0) { cout << "Y"; } else if (a % 400 == 0) { cout << "Y"; } else { cout << "N"; } return 0; }
-
-22022-4-28 21:27:19@
#INCLUDE
-
-32022-7-3 18:34:52@
#include <stdio.h> #include <iostream> #include <math.h> using namespace std; int main() { int n; cin >> n; if( (n%4 == 0 && n%100 !=0 ) || (n%400 == 0)) { cout << "Y"; } else { cout << "N"; } }
-
-32022-7-2 16:47:41@
/// #include<stdio.h> #include<iostream> using namespace std; int main() { int a; cin>>a; if(a%40&&a%100!=0) { cout<<"Y"<<endl; }else if(a%4000) { cout<<"Y"<<endl; }else { cout<<"N"<<endl; } } ///
-
-32022-5-4 20:24:37@
#include <bits/stdc++.h>
using namespace std;
int main() { int n; cin >>n; if(n % 4 == 0 && n % 100 != 0) { cout << "Y"; } else if(n % 400 == 0) { cout << "Y"; } else { cout << "N"; } }
-
-32022-1-2 14:44:15@
#include <stdio.h> #include <iostream> #include <math.h> #include <iomanip> using namespace std; #define LL Long Long const int N=1e5+10; const int INF=0x3f3f3f3f; int main() { int n; cin >>n; if((n%4==0 && n%100 !=0)||(n%400==0)) { cout <<"Y"; } else { cout<<"N"; } }
信息
- ID
- 866
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- 递交数
- 1302
- 已通过
- 482
- 上传者