結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,372 KB
testcase_01 AC 64 ms
79,808 KB
testcase_02 AC 51 ms
67,752 KB
testcase_03 AC 53 ms
70,588 KB
testcase_04 AC 65 ms
80,296 KB
testcase_05 AC 50 ms
65,572 KB
testcase_06 AC 55 ms
75,940 KB
testcase_07 AC 65 ms
79,896 KB
testcase_08 AC 53 ms
71,056 KB
testcase_09 AC 50 ms
64,832 KB
testcase_10 AC 54 ms
71,932 KB
testcase_11 AC 38 ms
52,708 KB
testcase_12 AC 39 ms
52,176 KB
testcase_13 AC 38 ms
51,868 KB
testcase_14 AC 38 ms
52,344 KB
testcase_15 AC 38 ms
52,996 KB
testcase_16 AC 39 ms
52,492 KB
testcase_17 AC 39 ms
52,008 KB
testcase_18 AC 67 ms
79,980 KB
testcase_19 AC 66 ms
80,904 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