結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,792 KB
testcase_01 AC 54 ms
12,660 KB
testcase_02 AC 28 ms
9,636 KB
testcase_03 AC 33 ms
10,160 KB
testcase_04 AC 54 ms
12,716 KB
testcase_05 AC 22 ms
8,968 KB
testcase_06 AC 40 ms
11,152 KB
testcase_07 AC 55 ms
13,064 KB
testcase_08 AC 34 ms
10,192 KB
testcase_09 AC 23 ms
9,032 KB
testcase_10 AC 35 ms
10,660 KB
testcase_11 WA -
testcase_12 AC 15 ms
7,880 KB
testcase_13 AC 15 ms
7,924 KB
testcase_14 AC 15 ms
7,940 KB
testcase_15 AC 15 ms
7,856 KB
testcase_16 AC 15 ms
7,884 KB
testcase_17 AC 15 ms
7,968 KB
testcase_18 AC 60 ms
13,584 KB
testcase_19 AC 61 ms
13,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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