結果

問題 No.1528 Not 1
ユーザー flippergoflippergo
提出日時 2024-11-28 20:23:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 85,944 KB
最終ジャッジ日時 2024-11-28 20:23:21
合計ジャッジ時間 3,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 70 ms
84,608 KB
testcase_02 AC 54 ms
69,632 KB
testcase_03 AC 55 ms
72,192 KB
testcase_04 AC 69 ms
84,224 KB
testcase_05 AC 51 ms
64,512 KB
testcase_06 AC 58 ms
77,568 KB
testcase_07 AC 70 ms
84,992 KB
testcase_08 AC 55 ms
73,728 KB
testcase_09 AC 50 ms
66,560 KB
testcase_10 AC 59 ms
74,240 KB
testcase_11 WA -
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 38 ms
51,456 KB
testcase_14 AC 38 ms
51,456 KB
testcase_15 AC 39 ms
51,456 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 71 ms
85,944 KB
testcase_19 AC 72 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
if N==2:
    A.append(2)
elif N==1 or N==3 or N==5:
    A.append(-1)
elif N==4:
    A = [2,4]
elif N%2==0:
    for i in range(1,N//2+1):
        A.append(2*i)
else:
    for i in range((N+1)//2-2):
        if N-1-2*i!=6:
            A.append(N-1-2*i)
    A.append(2)
    A.append(6)
    A.append(3)
print(*A)
0