結果
| 問題 | No.1335 1337 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-28 19:17:11 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 35 ms / 2,000 ms |
| コード長 | 506 bytes |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-29 22:56:40 |
| 合計ジャッジ時間 | 1,783 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
def main():
a = input()
s = input()
dic = {}
others = {}
for i in range(len(a)):
others = {str(i):a[i]}
dic.update(others)
#print(dic)
s2 = []
for j in s:
if j in dic:
s2.append(dic[j])
else:
s2.append(j)
text = "".join(s2)
print(text)
#Aを辞書(key:アルファベット、value:0からの数字)
#for文でsがvalueに含まれる場合、keyと変換
if __name__ == '__main__':
main()