結果
| 問題 |
No.9006 マルチバイト文字テスト(テスト用)
|
| ユーザー |
|
| 提出日時 | 2019-08-20 20:47:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 223 bytes |
| コンパイル時間 | 1,538 ms |
| コンパイル使用メモリ | 167,016 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-06 16:06:54 |
| 合計ジャッジ時間 | 1,753 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
setlocale(LC_CTYPE,"ja_JP.UTF-8");
wstring s,ans;
wcin>>s;
for(int i=s.length()-1;i>=0;--i){
ans.append(1,s[i]);
}
wcout<<ans<<endl;
}