結果

問題 No.1528 Not 1
ユーザー ー葵ーAoiー葵ーAoi
提出日時 2021-06-04 20:07:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-29 23:06:56
合計ジャッジ時間 25,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 OLE -
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 AC 28 ms
10,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 30 ms
10,880 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 OLE -
testcase_19 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
ans = [0] * math.ceil(n / 2)
ans[0] = 1

for i in range(1, math.ceil(n / 2)):
    ans[i] = ans[i - 1] * 2

print(*ans)
0