結果

問題 No.1528 Not 1
ユーザー moharan627moharan627
提出日時 2021-06-04 21:19:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-30 01:19:50
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 127 ms
10,752 KB
testcase_02 AC 63 ms
10,880 KB
testcase_03 AC 72 ms
10,880 KB
testcase_04 AC 124 ms
10,880 KB
testcase_05 AC 46 ms
10,880 KB
testcase_06 AC 94 ms
10,880 KB
testcase_07 AC 128 ms
10,880 KB
testcase_08 AC 77 ms
11,008 KB
testcase_09 AC 51 ms
10,752 KB
testcase_10 AC 79 ms
10,880 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 33 ms
10,624 KB
testcase_13 AC 33 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 140 ms
10,880 KB
testcase_19 AC 140 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
MOD = 10**9 + 7
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    if(N==1):
        print(1)
        exit()
    if(N==3 or N==5):
        print(-1)
        exit()
    if(N%2 == 0):
        for n in range(2,N+1,2):
            print(n," ",sep="",end="")
        print()
    else:
        for n in range(2,N+1,2):
            if(n == 6):
                continue
            print(n," ",sep="",end="")
        print(6,3)

    return
solve()
0