結果

問題 No.3004 ヤング図形
ユーザー gew1fw
提出日時 2025-06-12 14:19:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 381 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 67,268 KB
最終ジャッジ日時 2025-06-12 14:19:14
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

# Read the input lines until 0 is encountered
import sys

mapping = {
    3: 'k',
    4: 'i',
    7: 'd',
    8: 'e'
}

for line in sys.stdin:
    num = int(line.strip())
    if num == 0:
        break
    if num in mapping:
        print(mapping[num])
    else:
        # Handle numbers not in the mapping (though problem constraints may imply they are covered)
        print('?')
0