1 条题解

  • 1
    @ 2026-6-7 21:05:56

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

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

    return 0;
    

    }

    信息

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