全部评论 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

热门讨论