結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
15,744 KB
testcase_01 AC 70 ms
20,992 KB
testcase_02 AC 53 ms
17,536 KB
testcase_03 AC 54 ms
17,920 KB
testcase_04 AC 66 ms
20,992 KB
testcase_05 AC 46 ms
16,256 KB
testcase_06 AC 60 ms
19,072 KB
testcase_07 AC 67 ms
21,248 KB
testcase_08 AC 55 ms
18,176 KB
testcase_09 AC 50 ms
16,768 KB
testcase_10 AC 55 ms
18,304 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 73 ms
22,016 KB
testcase_19 AC 71 ms
21,888 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(-1)
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