結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
15,488 KB
testcase_01 AC 67 ms
21,120 KB
testcase_02 AC 52 ms
17,280 KB
testcase_03 AC 56 ms
18,048 KB
testcase_04 AC 68 ms
20,736 KB
testcase_05 AC 48 ms
16,128 KB
testcase_06 AC 59 ms
19,200 KB
testcase_07 AC 69 ms
21,120 KB
testcase_08 AC 57 ms
17,920 KB
testcase_09 AC 50 ms
16,768 KB
testcase_10 AC 56 ms
18,304 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
15,488 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 45 ms
15,488 KB
testcase_18 AC 70 ms
21,632 KB
testcase_19 AC 71 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
import math
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