1 条题解

  • 0
    @ 2026-6-6 21:49:41

    #include <bits/stdc++.h> using namespace std;

    //main int main() { int n; cin >> n; int m = n / 1000 + n / 100 % 10 + n / 10 % 10 + n % 10; cout << m << endl;

    return 0;
    

    }

    • 1

    信息

    ID
    30377
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    71
    已通过
    46
    上传者