13 条题解

  • 0
    @ 2023-12-25 13:47:37

    #include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if (a%4000) { cout<<"Yes"<<endl; } else if(a%100!=0) { if(a%40) { cout<<"Yes"<<endl; } else { cout<<"No"<<endl; } } else { cout<<"No"<<endl; } return 0; }

    信息

    ID
    24
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    354
    已通过
    117
    上传者