結果

問題 No.1528 Not 1
ユーザー keijakkeijak
提出日時 2021-06-04 20:24:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,208 KB
最終ジャッジ日時 2024-04-29 23:46:50
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 75 ms
14,900 KB
testcase_02 AC 42 ms
12,032 KB
testcase_03 AC 46 ms
12,544 KB
testcase_04 AC 74 ms
15,428 KB
testcase_05 AC 33 ms
11,520 KB
testcase_06 AC 57 ms
13,476 KB
testcase_07 AC 76 ms
15,028 KB
testcase_08 AC 48 ms
12,980 KB
testcase_09 AC 36 ms
11,648 KB
testcase_10 AC 51 ms
12,800 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 79 ms
15,488 KB
testcase_19 AC 85 ms
16,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n <= 2:
    print(n)
elif n in (3, 5):
    print(-1)
elif n % 2 == 0:
    print(*[x for x in range(2, n+1, 2)])
else:
    ans = [3, 6] + [x for x in range(2, n, 2) if x != 6]
    print(*ans)
0