結果

問題 No.1528 Not 1
ユーザー gorugo30gorugo30
提出日時 2021-06-04 20:19:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-04-29 23:34:35
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 80 ms
80,000 KB
testcase_02 AC 63 ms
67,456 KB
testcase_03 AC 62 ms
69,888 KB
testcase_04 AC 82 ms
84,096 KB
testcase_05 AC 57 ms
64,256 KB
testcase_06 AC 67 ms
73,984 KB
testcase_07 AC 78 ms
80,000 KB
testcase_08 AC 66 ms
73,088 KB
testcase_09 AC 58 ms
64,512 KB
testcase_10 AC 64 ms
71,040 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 40 ms
51,456 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 41 ms
51,456 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 77 ms
80,640 KB
testcase_19 AC 84 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N % 2 == 0:
    print(*[2 * (i + 1) for i in range((N + 1) // 2)])
else:
    if N == 1:
        print(1)
        exit()
    if N <= 5:
        print(-1)
        exit()
    L = (N + 1) // 2
    A = [3, 6, 2, 4]
    while len(A) < L:
        A.append(2 * (len(A)))
    print(*A)
0