結果

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

ソースコード

diff #

from random import *
n=int(input())
def solve(n):
    if(n==2):
        print("No")
        exit()
    a=[i+1 for i in range(n)]
    if(n%2==0):
        a[-1],a[-2]=a[-2],a[-1]
    print(*a)
solve(n)
0