結果

問題 No.1528 Not 1
ユーザー gorugo30gorugo30
提出日時 2021-06-04 20:14:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-11-19 08:18:38
合計ジャッジ時間 2,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 65 ms
80,000 KB
testcase_02 AC 54 ms
67,840 KB
testcase_03 AC 49 ms
70,144 KB
testcase_04 AC 64 ms
84,304 KB
testcase_05 AC 46 ms
64,384 KB
testcase_06 AC 52 ms
74,752 KB
testcase_07 AC 60 ms
79,872 KB
testcase_08 AC 53 ms
73,344 KB
testcase_09 AC 48 ms
64,896 KB
testcase_10 AC 49 ms
71,040 KB
testcase_11 WA -
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 34 ms
51,712 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 35 ms
51,968 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 33 ms
51,456 KB
testcase_18 AC 61 ms
80,676 KB
testcase_19 AC 68 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N % 2 == 0:
    print(*[2 * (i + 1) for i in range((N + 1) // 2)])
else:
    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