結果
| 問題 |
No.3027 f-列とh-列
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 18:04:14 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 173 bytes |
| コンパイル時間 | 188 ms |
| コンパイル使用メモリ | 82,792 KB |
| 実行使用メモリ | 67,076 KB |
| 最終ジャッジ日時 | 2025-06-12 18:04:42 |
| 合計ジャッジ時間 | 2,187 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 RE * 14 |
ソースコード
# Predefined sequence sequence = [7, 1, 4, 5, 5, 3, 8, 1, 9, 1] # Read input n = int(input()) # Output the nth element (adjusting for 0-based index) print(sequence[n - 1])
gew1fw