結果
| 問題 | No.3287 Golden Ring |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-10-04 05:20:38 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 2,000 ms |
| + 254µs | |
| コード長 | 279 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 95,852 KB |
| 実行使用メモリ | 83,968 KB |
| 最終ジャッジ日時 | 2026-07-15 10:48:57 |
| 合計ジャッジ時間 | 2,699 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 14 |
ソースコード
N=int(input())
if N==2:exit(print("No"))
if N%2==0:
e=[]
o=[]
for i in range(1,N+1):
if i%2==0:e.append(i)
else:o.append(i)
o.sort(reverse=True)
ans=e+o
else:
ans=[]
for i in range(1,N+1):
ans.append(i)
print("Yes")
print(*ans)