結果

問題 No.1335 1337
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 53,164 KB
最終ジャッジ日時 2024-05-04 22:29:07
合計ジャッジ時間 1,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,032 KB
testcase_01 AC 36 ms
52,244 KB
testcase_02 AC 35 ms
52,760 KB
testcase_03 AC 33 ms
51,672 KB
testcase_04 AC 33 ms
51,992 KB
testcase_05 AC 32 ms
52,876 KB
testcase_06 AC 32 ms
51,876 KB
testcase_07 AC 33 ms
52,372 KB
testcase_08 AC 33 ms
52,400 KB
testcase_09 AC 35 ms
52,632 KB
testcase_10 AC 33 ms
53,100 KB
testcase_11 AC 33 ms
52,188 KB
testcase_12 AC 32 ms
52,740 KB
testcase_13 AC 32 ms
52,004 KB
testcase_14 AC 32 ms
53,164 KB
testcase_15 AC 33 ms
52,640 KB
testcase_16 AC 34 ms
52,684 KB
testcase_17 AC 34 ms
51,892 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