4 条题解

  • 1
    @ 2025-7-17 10:47:41
    #include <bits/stdc++.h>
    #define LL long long
    using namespace std;
    const int N = 1e5 + 10;
    const int INF = 0x3f3f3f3f;
    int n , m;
    int main()
    {
    	    cin >> n;
            while (n)
            {
            	m = n % 10;
            	cout << m;
            	n /= 10;
    		}
    		return 0;
    }
    

    信息

    ID
    3179
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    148
    已通过
    61
    上传者