結果

問題 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
コンパイル時間 249 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,320 KB
最終ジャッジ日時 2024-06-29 05:42:15
合計ジャッジ時間 3,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 78 ms
15,488 KB
testcase_02 AC 47 ms
12,288 KB
testcase_03 AC 50 ms
12,928 KB
testcase_04 AC 77 ms
15,420 KB
testcase_05 AC 37 ms
11,520 KB
testcase_06 AC 60 ms
13,824 KB
testcase_07 AC 79 ms
15,744 KB
testcase_08 AC 52 ms
13,020 KB
testcase_09 AC 40 ms
11,776 KB
testcase_10 AC 54 ms
13,312 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 86 ms
16,256 KB
testcase_19 AC 88 ms
16,320 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