結果

問題 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
コンパイル時間 82 ms
コンパイル使用メモリ 10,576 KB
実行使用メモリ 20,732 KB
最終ジャッジ日時 2023-09-07 15:28:53
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
12,860 KB
testcase_01 AC 48 ms
19,656 KB
testcase_02 AC 33 ms
15,188 KB
testcase_03 AC 34 ms
16,156 KB
testcase_04 AC 44 ms
19,556 KB
testcase_05 AC 29 ms
13,948 KB
testcase_06 AC 38 ms
17,344 KB
testcase_07 AC 46 ms
20,140 KB
testcase_08 AC 36 ms
16,044 KB
testcase_09 AC 31 ms
14,452 KB
testcase_10 AC 36 ms
16,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 27 ms
13,008 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 27 ms
13,072 KB
testcase_18 AC 48 ms
20,704 KB
testcase_19 AC 47 ms
20,732 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