結果

問題 No.1528 Not 1
ユーザー uiromochiuiromochi
提出日時 2021-06-04 22:37:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-11-20 04:05:25
合計ジャッジ時間 2,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 80 ms
16,256 KB
testcase_02 AC 46 ms
12,672 KB
testcase_03 AC 52 ms
13,312 KB
testcase_04 AC 79 ms
16,216 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 63 ms
14,208 KB
testcase_07 AC 81 ms
16,256 KB
testcase_08 AC 53 ms
13,264 KB
testcase_09 AC 41 ms
11,776 KB
testcase_10 AC 56 ms
13,568 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 87 ms
17,152 KB
testcase_19 AC 88 ms
17,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N):
    if N == 1:
        return [1]

    if N == 3 or N == 5:
        return [-1]

    if N%2 == 0:
        return list(range(2, N+1, 2))

    res = [2, 4] + list(range(8, N, 2)) + [6, 3]
    return res

import sys
input = sys.stdin.readline

def main():
    N = int(input())
    res = solve(N)
    print(*res, sep = " ")

if __name__ == "__main__":
    main()
0