結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 72 ms
85,248 KB
testcase_02 AC 56 ms
70,400 KB
testcase_03 AC 57 ms
73,664 KB
testcase_04 AC 72 ms
84,992 KB
testcase_05 AC 52 ms
65,792 KB
testcase_06 AC 60 ms
78,464 KB
testcase_07 AC 73 ms
85,248 KB
testcase_08 AC 58 ms
73,856 KB
testcase_09 AC 58 ms
67,200 KB
testcase_10 AC 59 ms
74,496 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 41 ms
51,712 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 40 ms
51,584 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 79 ms
86,528 KB
testcase_19 AC 73 ms
86,272 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