結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-17 13:17:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 53,756 KB
最終ジャッジ日時 2024-11-29 14:25:28
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,808 KB
testcase_01 AC 33 ms
52,556 KB
testcase_02 AC 34 ms
52,392 KB
testcase_03 AC 34 ms
53,204 KB
testcase_04 AC 33 ms
52,460 KB
testcase_05 AC 32 ms
52,560 KB
testcase_06 AC 33 ms
52,484 KB
testcase_07 AC 33 ms
52,804 KB
testcase_08 AC 34 ms
52,952 KB
testcase_09 AC 35 ms
52,284 KB
testcase_10 AC 37 ms
52,724 KB
testcase_11 AC 33 ms
53,548 KB
testcase_12 AC 36 ms
53,256 KB
testcase_13 AC 37 ms
52,436 KB
testcase_14 AC 37 ms
52,604 KB
testcase_15 AC 36 ms
52,624 KB
testcase_16 AC 36 ms
52,900 KB
testcase_17 AC 35 ms
52,764 KB
testcase_18 AC 35 ms
53,756 KB
testcase_19 AC 37 ms
52,676 KB
testcase_20 AC 35 ms
52,332 KB
testcase_21 AC 37 ms
53,472 KB
testcase_22 AC 35 ms
53,384 KB
testcase_23 AC 36 ms
52,872 KB
testcase_24 AC 35 ms
53,084 KB
testcase_25 AC 35 ms
53,288 KB
testcase_26 AC 36 ms
52,564 KB
testcase_27 AC 34 ms
52,120 KB
testcase_28 AC 32 ms
52,244 KB
testcase_29 AC 34 ms
52,828 KB
testcase_30 AC 34 ms
52,816 KB
testcase_31 AC 34 ms
52,464 KB
testcase_32 AC 34 ms
52,628 KB
testcase_33 AC 33 ms
53,696 KB
testcase_34 AC 33 ms
53,336 KB
testcase_35 AC 34 ms
53,120 KB
testcase_36 AC 33 ms
53,272 KB
testcase_37 AC 33 ms
52,528 KB
testcase_38 AC 36 ms
52,596 KB
testcase_39 AC 36 ms
53,700 KB
testcase_40 AC 35 ms
52,328 KB
testcase_41 AC 36 ms
53,172 KB
testcase_42 AC 35 ms
53,744 KB
testcase_43 AC 34 ms
52,440 KB
testcase_44 AC 34 ms
52,392 KB
testcase_45 AC 33 ms
52,536 KB
testcase_46 AC 34 ms
52,748 KB
testcase_47 AC 34 ms
52,160 KB
testcase_48 AC 37 ms
53,448 KB
testcase_49 AC 37 ms
52,836 KB
testcase_50 AC 37 ms
52,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

2べきにする?
1,2,4…,2^(N-1) は

1+2+4+…+2^(N-2)+1


"""


from sys import stdin
import math

N = int(stdin.readline())

ans = [2**i for i in range(N)]
print (*ans)
0