結果

問題 No.1528 Not 1
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 20:37:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-05-05 17:26:57
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 77 ms
79,616 KB
testcase_02 AC 56 ms
67,456 KB
testcase_03 AC 62 ms
69,248 KB
testcase_04 AC 77 ms
79,872 KB
testcase_05 AC 57 ms
63,744 KB
testcase_06 AC 67 ms
73,728 KB
testcase_07 AC 78 ms
80,000 KB
testcase_08 AC 62 ms
70,400 KB
testcase_09 AC 51 ms
64,640 KB
testcase_10 AC 58 ms
70,912 KB
testcase_11 AC 42 ms
51,584 KB
testcase_12 AC 42 ms
51,584 KB
testcase_13 AC 42 ms
51,200 KB
testcase_14 AC 41 ms
51,584 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 AC 75 ms
80,128 KB
testcase_19 AC 73 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())

if N == 3 or N == 5:
    print(-1)
elif N == 1:
    print(1)
elif N % 2 == 0:
    print(*list(range(2, N+1, 2)))
else:
    a = [3, 6, 2, 4] + list(range(8, N, 2))
    print(*a)


0