結果

問題 No.1528 Not 1
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-06-26 19:35:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-25 09:19:07
合計ジャッジ時間 3,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
15,616 KB
testcase_01 AC 66 ms
21,120 KB
testcase_02 AC 53 ms
17,408 KB
testcase_03 AC 59 ms
18,048 KB
testcase_04 AC 68 ms
20,992 KB
testcase_05 AC 51 ms
16,256 KB
testcase_06 AC 60 ms
19,072 KB
testcase_07 AC 67 ms
21,248 KB
testcase_08 AC 54 ms
18,048 KB
testcase_09 AC 48 ms
16,640 KB
testcase_10 AC 57 ms
18,304 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 69 ms
21,888 KB
testcase_19 AC 70 ms
22,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
import math
if N <= 2:
  print(1)
elif N <= 3:
  print(-1)
elif N == 4:
  print(2,4)
elif N == 5:
  print(-1)
elif N == 6:
  print(2,4,6)
elif N == 7:
  print(3,6,2,4)
elif N == 8:
  print(2,4,6,8)
else:
  n = math.ceil(N/2)
  ans = [3,6,2,4]
  m2 = [2*i for i in range(4,10**5)]
  ans.extend(m2)
  print(" ".join([str(i) for i in ans[:n]]))
0