結果

問題 No.400 鏡
ユーザー square1001
提出日時 2016-08-16 19:44:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 165,696 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 18:17:02
合計ジャッジ時間 2,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
string s;
int main() {
	cin >> s;
	reverse(s.begin(), s.end());
	cout << s << endl;
	return 0;
}
0