1 条题解

  • 1

    #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; }

    信息

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