結果
問題 | No.3000 enuemu暗号 |
ユーザー | kyuridenamida |
提出日時 | 2014-12-25 22:02:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 1,197 ms |
コンパイル使用メモリ | 159,592 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 23:00:36 |
合計ジャッジ時間 | 1,622 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; string table1 = "pfnovuaxqwufmbgrihcdejkolsty"; string table2 = "orangecipherbqsuftlmdxynzvwj"; int main(){ string s; cin >> s; for( auto &c : s ){ c = table2[table1.find(c)]; } cout << s << endl; }