結果
| 問題 |
No.3027 f-列とh-列
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-04-15 20:53:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| コンパイル時間 | 439 ms |
| コンパイル使用メモリ | 82,040 KB |
| 実行使用メモリ | 66,764 KB |
| 最終ジャッジ日時 | 2025-04-15 20:55:37 |
| 合計ジャッジ時間 | 2,092 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 RE * 14 |
ソースコード
# The predefined sequence sequence = [7, 5, 5, 3, 5, 4, 3, 6, 8, 5] # Read input n = int(input()) # Output the corresponding value (adjusting for 0-based index) print(sequence[n - 1])
lam6er