| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 44080 | YOYOLEE-李昕颖 | 字符串 | C++ | Accepted | 0 MS | 244 KB | 163 | 2024-03-27 20:47:06 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; for(int i=s.size()-1;i>=0;i--){ cout<<s[i]; } return 0; }