結果

問題 No.8000 enuemu暗号
ユーザー kyuridenamida
提出日時 2014-12-25 22:02:56
言語 C++11(廃止可能性あり)
(gcc 13.3.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
	
}
0