1 条题解

  • 0
    @ 2024-8-12 9:34:19
    #include<bits/stdc++.h>
    using namespace std;
    string s;
    int main(){
    	ios::sync_with_stdio(NULL);
    	cin.tie(0);cout.tie(0);
    	cin>>s;
    	reverse(s.begin(),s.end());
    	cout<<s;
    	return 0;
    } 
    
    • 1

    信息

    ID
    535
    时间
    1000ms
    内存
    256MiB
    难度
    8
    标签
    (无)
    递交数
    11
    已通过
    7
    上传者