結果

問題 No.3287 Golden Ring
ユーザー Facade
提出日時 2025-10-03 21:43:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 62,368 KB
最終ジャッジ日時 2025-10-03 21:43:13
合計ジャッジ時間 1,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[i+1 for i in range(n)]
print("Yes")
if(n%2==0):
    a[-1],a[-2]=a[-2],a[-1]
print(*a)
0