結果

問題 No.1335 1337
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 86,816 KB
実行使用メモリ 71,320 KB
最終ジャッジ日時 2023-08-17 15:48:04
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,040 KB
testcase_01 AC 67 ms
71,276 KB
testcase_02 AC 67 ms
71,168 KB
testcase_03 AC 68 ms
71,096 KB
testcase_04 AC 69 ms
71,088 KB
testcase_05 AC 68 ms
70,900 KB
testcase_06 AC 71 ms
71,216 KB
testcase_07 AC 69 ms
71,320 KB
testcase_08 AC 70 ms
71,092 KB
testcase_09 AC 69 ms
70,816 KB
testcase_10 AC 68 ms
71,084 KB
testcase_11 AC 68 ms
71,168 KB
testcase_12 AC 69 ms
70,980 KB
testcase_13 AC 68 ms
71,000 KB
testcase_14 AC 67 ms
71,044 KB
testcase_15 AC 68 ms
71,124 KB
testcase_16 AC 67 ms
71,076 KB
testcase_17 AC 70 ms
71,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=input()
S=list(input())
for i in range(len(S)):
  if S[i]<='9':
    S[i]=A[int(S[i])]
print(*S,sep='')
0