1 条题解

  • 0
    @ 2025-7-29 18:38:44

    #include <bits/stdc++.h> using namespace std; int main(){ long long n; cin >> n; if(n%2==0) { cout << "0" <<endl; } if(n%2>0) { cout << "1" <<endl; } return 0; }

    • 1

    信息

    ID
    582
    时间
    1000ms
    内存
    64MiB
    难度
    3
    标签
    递交数
    42
    已通过
    25
    上传者