4 条题解

  • 1
    @ 2024-12-29 15:19:31

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

    • 1
      @ 2024-12-29 15:19:25

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

      • 1
        @ 2024-12-29 15:18:57

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

        • 0

          #include<bits/stdc++.h> using namespace std; int main() { int x; cin>>x; if(x%40) { if(x%1000) { if(x%400==0) { cout<<1; } else { cout<<0; } } else { cout<<1; } } else { cout<<0; } return 0; }

          • 1

          信息

          ID
          9733
          时间
          1000ms
          内存
          125MiB
          难度
          1
          标签
          (无)
          递交数
          61
          已通过
          33
          上传者