結果

問題 No.1528 Not 1
ユーザー showtamushowtamu
提出日時 2021-06-04 21:08:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 389 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-04-30 01:03:23
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 76 ms
18,688 KB
testcase_02 AC 44 ms
13,440 KB
testcase_03 AC 48 ms
14,464 KB
testcase_04 AC 70 ms
18,432 KB
testcase_05 AC 36 ms
11,776 KB
testcase_06 AC 59 ms
16,000 KB
testcase_07 AC 73 ms
19,072 KB
testcase_08 AC 52 ms
14,592 KB
testcase_09 AC 39 ms
12,416 KB
testcase_10 AC 51 ms
14,848 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 30 ms
10,624 KB
testcase_15 WA -
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 79 ms
20,096 KB
testcase_19 AC 78 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n==1:
    print(-1)
elif n==2:
    print(2)
elif n==3:
    print(-1)
elif n==5:
    print(-1)
a=int(n//2)
a+=1
s=[]
if n%2==0:
    for i in range(1,a):
        c=2*i
        s.append(c)
else:
    for i in range(1,a):
        d=2*i
        s.append(d)
    s.remove(6)
    s.append(6)
    s.append(3)
s=[str(p) for p in s]
s=' '.join(s)
t = s.replace(' ', ' ')
print(t)    
0