| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 71142 | sh25_zhoumy | 字符串 | C++ | 通过 | 0 MS | 240 KB | 227 | 2025-10-24 15:14:09 |
#include <iostream> #include <string> #include <algorithm> int main() { std::string s; std::cin >> s; std::reverse(s.begin(), s.end()); std::cout << s << std::endl; return 0; }