結果
| 問題 | No.1337 Fair Otoshidama |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-11-04 17:32:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 65,408 KB |
| 最終ジャッジ日時 | 2026-05-02 02:50:38 |
| 合計ジャッジ時間 | 2,990 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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()