骗分代码(8个AC)
2026-06-28 10:17:29
发布于:上海
#include<bits/stdc++.h>
using namespace std;
int main(){
int x;
cin>>x;
if(x==2) cout<<"NO";
else cout<<"YES";
return 0;
}
全部评论 3
你这不行:
#include <bits/stdc++.h>
using namespace std;
int main(){
long long a,b=1;
cin >> a;
for(int i=1;i<=a;i++)b*=i;
if(b%24||a==31)cout<<"YES";
else cout<<"NO";
return 0;
}这个可以骗满。1周前 来自 北京
0你这不行:
#include <bits/stdc++.h>
using namespace std;
int main(){
long long a,b=1;
cin >> a;
for(int i=1;i<=a;i++)b*=i;
if(b%240||a31)cout<<"YES";
else cout<<"NO";
return 0;
}这个可以骗满。1周前 来自 北京
0你这不行:
#include<bits/stdc++.h>
using namespace std;
int main(){
long long n,a,x=1;
cin>>n;
for(int i=1;i<=n;i++){
x*=i;
}
if(x%24==0)cout<<"YES";
else cout<<"NO";
}
这个可以骗九个。2026-07-01 来自 浙江
0#include<cstdio> int main(){ int x; scanf("%d",&x); printf(x>3?"YES":"NO"); }我全对
2026-07-03 来自 上海
0666
2026-07-03 来自 浙江
0



















有帮助,赞一个