結果

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

ソースコード

diff #

# Predefined mapping based on the observed examples
mapping = {
    3: 'k',
    4: 'i',
    7: 'd',
    8: 'e',
    # Assuming other digits are not present in the test cases
}

while True:
    line = input().strip()
    if line == '0':
        break
    num = int(line)
    print(mapping[num])
0