結果

問題 No.1528 Not 1
ユーザー kohei2019kohei2019
提出日時 2022-06-03 00:50:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-09-21 02:14:12
合計ジャッジ時間 3,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 77 ms
80,128 KB
testcase_02 AC 54 ms
67,968 KB
testcase_03 AC 56 ms
69,888 KB
testcase_04 AC 73 ms
84,480 KB
testcase_05 AC 49 ms
64,512 KB
testcase_06 AC 58 ms
74,496 KB
testcase_07 AC 65 ms
79,616 KB
testcase_08 AC 56 ms
73,984 KB
testcase_09 AC 54 ms
65,280 KB
testcase_10 AC 62 ms
71,040 KB
testcase_11 AC 44 ms
52,224 KB
testcase_12 AC 46 ms
51,968 KB
testcase_13 AC 45 ms
51,712 KB
testcase_14 AC 48 ms
51,840 KB
testcase_15 AC 47 ms
51,968 KB
testcase_16 AC 45 ms
51,968 KB
testcase_17 AC 45 ms
51,968 KB
testcase_18 AC 80 ms
80,640 KB
testcase_19 AC 87 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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