27 条题解

  • 1
    @ 2025-6-7 19:37:44
    #include<bits/stdc++.h>
    using namespace std;
    #define LL long long
    const int N = 1e5 + 10;
    const int INF = 0x3f3f3f3f;
    char a[1000000];
    int main()
    {
    	cin >> a;
    	for ( int i = strlen(a) - 1 ; i >= 0 ; i-- )
    	{
    		cout << a[i];
    	}
    } 
    //菜鸟驿站
    //老六专属

    信息

    ID
    837
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    1889
    已通过
    714
    上传者