結果

問題 No.1528 Not 1
ユーザー irumo8202irumo8202
提出日時 2022-02-13 16:50:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 13,588 KB
最終ジャッジ日時 2023-09-11 15:35:11
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,880 KB
testcase_01 AC 55 ms
12,856 KB
testcase_02 AC 28 ms
9,560 KB
testcase_03 AC 34 ms
10,020 KB
testcase_04 AC 55 ms
12,884 KB
testcase_05 WA -
testcase_06 AC 42 ms
11,196 KB
testcase_07 AC 57 ms
12,980 KB
testcase_08 WA -
testcase_09 AC 25 ms
9,112 KB
testcase_10 AC 36 ms
10,756 KB
testcase_11 WA -
testcase_12 AC 16 ms
7,852 KB
testcase_13 AC 16 ms
7,808 KB
testcase_14 AC 16 ms
7,928 KB
testcase_15 AC 16 ms
7,952 KB
testcase_16 AC 16 ms
7,804 KB
testcase_17 AC 15 ms
7,952 KB
testcase_18 AC 64 ms
13,588 KB
testcase_19 AC 62 ms
13,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = list(range(2, N+1, 2))
if N % 2 == 0:
    print(*ans)
elif N >= 7:
    print(*ans, ans[-1] //2)
else:
    print(-1)
0