結果

問題 No.1528 Not 1
ユーザー gorugo30gorugo30
提出日時 2021-06-04 20:12:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 234 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 85,828 KB
最終ジャッジ日時 2024-11-19 08:14:01
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,404 KB
testcase_01 AC 58 ms
80,060 KB
testcase_02 AC 48 ms
67,788 KB
testcase_03 AC 48 ms
69,956 KB
testcase_04 AC 64 ms
84,328 KB
testcase_05 AC 45 ms
66,344 KB
testcase_06 AC 50 ms
74,548 KB
testcase_07 AC 59 ms
79,936 KB
testcase_08 AC 51 ms
73,608 KB
testcase_09 AC 46 ms
65,624 KB
testcase_10 AC 49 ms
72,892 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
52,212 KB
testcase_15 AC 34 ms
52,136 KB
testcase_16 AC 34 ms
51,752 KB
testcase_17 AC 35 ms
52,264 KB
testcase_18 AC 60 ms
80,496 KB
testcase_19 AC 66 ms
85,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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