結果
| 問題 |
No.1337 Fair Otoshidama
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-11-04 17:32:53 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 120 bytes |
| コンパイル時間 | 162 ms |
| コンパイル使用メモリ | 82,396 KB |
| 実行使用メモリ | 66,816 KB |
| 最終ジャッジ日時 | 2024-10-14 16:30:48 |
| 合計ジャッジ時間 | 2,730 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 20 |
ソースコード
#!/usr/bin/env python3
a = input()
s = input()
for c in s:
print(c if c > '9' else a[ord(c) - 48], end='')
print()