結果

問題 No.3000 enuemu暗号
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-30 18:50:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 251,704 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 18:50:33
合計ジャッジ時間 3,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    string s1 = "pfnovu", s2 = "orange", t1 = "axqwuf", t2 = "cipher", u1 = "mbgrihcdejkolsty", u2 = "bqsuftlmdxynzvwj";
    map<char, char> mp;
    for (int i = 0; i < (int)s1.size(); i++) {
        mp[s1[i]] = s2[i];
    }
    for (int i = 0; i < (int)t1.size(); i++) {
        mp[t1[i]] = t2[i];
    }
    for (int i = 0; i < (int)u1.size(); i++) {
        mp[u1[i]] = u2[i];
    }
    string s;
    cin >> s;
    for (char c : s) {
        cout << mp[c];
    }
    cout << endl;
}
0