結果

問題 No.1528 Not 1
ユーザー showtamushowtamu
提出日時 2021-06-04 20:33:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-04-30 00:02:52
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 69 ms
18,944 KB
testcase_02 AC 40 ms
13,440 KB
testcase_03 AC 45 ms
14,336 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 54 ms
16,128 KB
testcase_07 AC 66 ms
19,200 KB
testcase_08 WA -
testcase_09 AC 35 ms
12,416 KB
testcase_10 AC 46 ms
14,848 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 76 ms
20,224 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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