結果

問題 No.1335 1337
ユーザー KudeKude
提出日時 2021-01-15 21:23:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 86,576 KB
実行使用メモリ 80,244 KB
最終ジャッジ日時 2023-08-17 15:52:34
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
79,940 KB
testcase_01 AC 155 ms
79,912 KB
testcase_02 AC 151 ms
80,240 KB
testcase_03 AC 151 ms
79,792 KB
testcase_04 AC 151 ms
79,948 KB
testcase_05 AC 152 ms
79,932 KB
testcase_06 AC 151 ms
80,052 KB
testcase_07 AC 154 ms
80,008 KB
testcase_08 AC 154 ms
79,884 KB
testcase_09 AC 156 ms
80,012 KB
testcase_10 AC 155 ms
80,244 KB
testcase_11 AC 156 ms
79,940 KB
testcase_12 AC 155 ms
79,944 KB
testcase_13 AC 150 ms
79,912 KB
testcase_14 AC 153 ms
79,972 KB
testcase_15 AC 150 ms
79,988 KB
testcase_16 AC 149 ms
79,880 KB
testcase_17 AC 151 ms
79,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase as chars
d = {c: c for c in chars}
d.update({str(i): c for i, c in enumerate(input())})
print(''.join(d[c] for c in input()))
0