結果
| 問題 | No.9006 マルチバイト文字テスト(テスト用) |
| ユーザー |
|
| 提出日時 | 2015-05-02 23:18:04 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 486 ms |
| コンパイル使用メモリ | 75,860 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-27 02:51:03 |
| 合計ジャッジ時間 | 746 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
ソースコード
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main(){
string s;
std::cin >> s;
reverse(s.begin(),s.end());
std::cout << s;
}