結果

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

ソースコード

diff #

# Predefined mappings based on the examples and derived pattern for others
mapping = {
    3: 'k',
    4: 'i',
    7: 'd',
    8: 'e',
}

while True:
    try:
        n = int(input())
        if n == 0:
            break
        # Check if the number is in the predefined mapping
        if n in mapping:
            print(mapping[n])
        else:
            # For other numbers, use the derived pattern (n + 8) % 26
            # Convert to corresponding letter (0-based index)
            pos = (n + 8) % 26
            # Convert to uppercase and then adjust to lowercase if needed
            # Since the examples use lowercase, we'll output lowercase
            print(chr(ord('a') + pos))
    except EOFError:
        break
0