結果
| 問題 | No.3287 Golden Ring | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-10-03 21:24:13 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 188 bytes | 
| コンパイル時間 | 173 ms | 
| コンパイル使用メモリ | 82,352 KB | 
| 実行使用メモリ | 65,228 KB | 
| 最終ジャッジ日時 | 2025-10-03 21:24:24 | 
| 合計ジャッジ時間 | 2,073 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 13 WA * 1 | 
ソースコード
from collections import deque
n = int(input())
a = deque([1])
for i in range(2, n + 1):
    if i % 2 == 0:
        a.append(i)
    else:
        a.appendleft(i)
print("Yes")
print(*a)
            
            
            
        