結果

問題 No.1528 Not 1
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-06 16:17:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-05-02 10:10:23
合計ジャッジ時間 3,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 84 ms
84,864 KB
testcase_02 AC 70 ms
70,016 KB
testcase_03 AC 59 ms
73,216 KB
testcase_04 AC 74 ms
84,608 KB
testcase_05 AC 55 ms
65,664 KB
testcase_06 AC 65 ms
78,976 KB
testcase_07 AC 73 ms
85,376 KB
testcase_08 AC 60 ms
74,240 KB
testcase_09 AC 53 ms
66,944 KB
testcase_10 AC 60 ms
75,136 KB
testcase_11 WA -
testcase_12 AC 43 ms
51,584 KB
testcase_13 AC 35 ms
51,328 KB
testcase_14 AC 35 ms
51,584 KB
testcase_15 AC 33 ms
51,968 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 35 ms
51,456 KB
testcase_18 AC 77 ms
86,272 KB
testcase_19 AC 75 ms
86,528 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