結果
| 問題 | No.3004 ヤング図形 |
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 14:06:17 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 393 bytes |
| 記録 | |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 95,720 KB |
| 実行使用メモリ | 90,496 KB |
| 最終ジャッジ日時 | 2026-07-11 10:56:25 |
| 合計ジャッジ時間 | 6,409 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 25 |
ソースコード
# Predefined mapping based on the examples and derived pattern
mapping = {
3: 'k',
4: 'i',
7: 'd',
8: 'e',
# Additional mappings for other numbers (hypothetical)
1: 'a',
2: 'b',
5: 'm',
6: 'o',
9: 'f'
}
while True:
line = input().strip()
if not line:
continue
n = int(line)
if n == 0:
break
print(mapping.get(n, ''))
gew1fw