結果
問題 |
No.1335 1337
|
ユーザー |
![]() |
提出日時 | 2024-05-08 11:53:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 107 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-14 15:37:59 |
合計ジャッジ時間 | 1,511 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 RE * 3 |
other | AC * 1 RE * 13 |
ソースコード
a = input() b = input() c = "" for i in b: if i in "0123456789": c += a[int(b)] else: c += i print(c)