結果
| 問題 |
No.1335 1337
|
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2022-08-08 21:27:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 227 bytes |
| コンパイル時間 | 126 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-19 05:58:29 |
| 合計ジャッジ時間 | 1,411 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
import sys
readline=sys.stdin.readline
dct={}
for i,a in enumerate(readline().rstrip()):
dct[str(i)]=a
ans_lst=[]
for s in readline().rstrip():
if s in dct:
s=dct[s]
ans_lst.append(s)
print(*ans_lst,sep="")
vwxyz