結果

問題 No.1528 Not 1
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-06 16:18:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-05-02 10:10:58
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 63 ms
85,356 KB
testcase_02 AC 55 ms
70,656 KB
testcase_03 AC 59 ms
73,344 KB
testcase_04 AC 74 ms
84,992 KB
testcase_05 AC 49 ms
65,664 KB
testcase_06 AC 54 ms
78,580 KB
testcase_07 AC 77 ms
85,504 KB
testcase_08 AC 50 ms
74,624 KB
testcase_09 AC 52 ms
67,456 KB
testcase_10 AC 60 ms
75,264 KB
testcase_11 AC 35 ms
51,584 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 35 ms
51,456 KB
testcase_14 AC 35 ms
51,712 KB
testcase_15 AC 35 ms
51,328 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 34 ms
51,840 KB
testcase_18 AC 78 ms
86,656 KB
testcase_19 AC 67 ms
86,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
    exit()
A = []
x = -1
for i in range(1, n+1):
    if i%2 == 0:
        A.append(i)
        if (i//2)%2 == 1:
            x = i//2
#print(A)
if x != -1:
    A.remove(2*x)
    A.append(2*x)
    A.append(x)
A = A[0:(n+1)//2]
if A[-1] == 1:
    print(-1)
    exit()
else:
    print(*A)
0