結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 67 ms
84,352 KB
testcase_02 AC 54 ms
69,760 KB
testcase_03 AC 54 ms
72,704 KB
testcase_04 AC 68 ms
84,352 KB
testcase_05 AC 49 ms
64,768 KB
testcase_06 AC 59 ms
77,476 KB
testcase_07 AC 68 ms
84,736 KB
testcase_08 AC 63 ms
73,728 KB
testcase_09 AC 52 ms
66,560 KB
testcase_10 AC 55 ms
74,240 KB
testcase_11 WA -
testcase_12 AC 38 ms
51,456 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 42 ms
51,840 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 37 ms
51,584 KB
testcase_18 AC 69 ms
85,760 KB
testcase_19 AC 69 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
if N==1 or N==2:
    A.append(2)
elif 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