結果
| 問題 |
No.3004 ヤング図形
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 19:03:21 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 281 bytes |
| コンパイル時間 | 291 ms |
| コンパイル使用メモリ | 82,436 KB |
| 実行使用メモリ | 67,148 KB |
| 最終ジャッジ日時 | 2025-06-12 19:03:30 |
| 合計ジャッジ時間 | 2,821 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 25 |
ソースコード
mapping = {
0: 'o',
1: 'a',
2: 'b',
3: 'k',
4: 'i',
5: 'j',
6: 'l',
7: 'd',
8: 'e',
9: 'f'
}
while True:
line = input().strip()
if not line:
continue
num = int(line)
if num == 0:
break
print(mapping[num])
gew1fw