結果

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

ソースコード

diff #

digit_to_char = {
    0: 'o',  # Assuming 0 maps to 'o' if needed, but 0 is the termination signal
    1: 'v',
    2: 'e',
    3: 'k',
    4: 'i',
    5: 'j',
    6: 'm',
    7: 'd',
    8: 'e',
    9: 'f'
}

while True:
    try:
        n = int(input())
        if n == 0:
            break
        print(digit_to_char[n])
    except EOFError:
        break
0