結果

問題 No.1528 Not 1
ユーザー KeroruKeroru
提出日時 2021-06-06 17:04:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-11-23 00:09:17
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 68 ms
79,872 KB
testcase_02 AC 53 ms
67,584 KB
testcase_03 AC 60 ms
69,632 KB
testcase_04 AC 68 ms
81,664 KB
testcase_05 AC 52 ms
63,488 KB
testcase_06 AC 57 ms
73,856 KB
testcase_07 AC 67 ms
80,228 KB
testcase_08 AC 56 ms
71,168 KB
testcase_09 AC 52 ms
64,640 KB
testcase_10 AC 57 ms
70,784 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 72 ms
80,640 KB
testcase_19 AC 70 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=n//2
if n in(3,5):
    a=[-1]
else:
    a=[2*i for i in range(1,m+1)]
    if n%2==1 and n>1:
        a=[3]+a[2:]+a[:2]
    if n==1:
        a=1,
print(*a)
0