結果

問題 No.1528 Not 1
ユーザー lloyzlloyz
提出日時 2021-12-16 22:08:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,276 KB
最終ジャッジ日時 2024-09-13 20:29:03
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 86 ms
15,488 KB
testcase_02 AC 50 ms
12,288 KB
testcase_03 AC 57 ms
12,928 KB
testcase_04 AC 90 ms
15,312 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 67 ms
13,952 KB
testcase_07 AC 91 ms
15,872 KB
testcase_08 AC 59 ms
12,992 KB
testcase_09 AC 43 ms
11,776 KB
testcase_10 AC 61 ms
13,184 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 97 ms
16,256 KB
testcase_19 AC 98 ms
16,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
elif n == 3 or n == 5:
    print(-1)
elif n >= 7 and n % 2 == 1:
    num = (n + 1) // 2
    num -= 4
    ans = [3, 6, 2, 4]
    ans += [2 * (i + 4) for i in range(num)]
    print(*ans)
else:
    num = (n + 1) // 2
    ans = [2 * (i + 1) for i in range(num)]
    print(*ans)
0