結果
| 問題 |
No.8000 enuemu暗号
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2014-12-25 19:31:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 223 bytes |
| コンパイル時間 | 1,308 ms |
| コンパイル使用メモリ | 158,840 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-12 23:00:02 |
| 合計ジャッジ時間 | 1,869 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
const string res = "cqlmdrstfxyzbanopuvweghij";
int main(){
string S;
cin >> S;
for(int i=0;i<S.size();i++){
S[i] = res[S[i] - 'a'];
}
cout << S << endl;
return 0;
}