結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-17 16:03:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-05-07 05:27:05
合計ジャッジ時間 3,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,396 KB
testcase_01 AC 36 ms
52,332 KB
testcase_02 AC 35 ms
53,660 KB
testcase_03 AC 36 ms
53,656 KB
testcase_04 AC 36 ms
53,848 KB
testcase_05 AC 37 ms
52,324 KB
testcase_06 AC 35 ms
52,984 KB
testcase_07 AC 37 ms
52,200 KB
testcase_08 AC 36 ms
52,868 KB
testcase_09 AC 35 ms
53,072 KB
testcase_10 AC 36 ms
52,548 KB
testcase_11 AC 38 ms
52,020 KB
testcase_12 AC 37 ms
52,132 KB
testcase_13 AC 36 ms
52,580 KB
testcase_14 AC 36 ms
52,576 KB
testcase_15 AC 35 ms
52,240 KB
testcase_16 AC 36 ms
53,852 KB
testcase_17 AC 35 ms
53,180 KB
testcase_18 AC 35 ms
53,476 KB
testcase_19 AC 36 ms
52,028 KB
testcase_20 AC 35 ms
52,056 KB
testcase_21 AC 37 ms
52,444 KB
testcase_22 AC 36 ms
52,628 KB
testcase_23 AC 35 ms
52,808 KB
testcase_24 AC 37 ms
53,428 KB
testcase_25 AC 37 ms
52,708 KB
testcase_26 AC 36 ms
52,680 KB
testcase_27 AC 36 ms
52,680 KB
testcase_28 AC 35 ms
53,052 KB
testcase_29 AC 35 ms
53,264 KB
testcase_30 AC 37 ms
52,436 KB
testcase_31 AC 36 ms
53,036 KB
testcase_32 AC 35 ms
51,872 KB
testcase_33 AC 36 ms
52,012 KB
testcase_34 AC 36 ms
52,484 KB
testcase_35 AC 34 ms
52,116 KB
testcase_36 AC 36 ms
52,700 KB
testcase_37 AC 35 ms
52,752 KB
testcase_38 AC 34 ms
52,684 KB
testcase_39 AC 36 ms
53,048 KB
testcase_40 AC 37 ms
52,364 KB
testcase_41 AC 37 ms
52,140 KB
testcase_42 AC 35 ms
52,780 KB
testcase_43 AC 37 ms
52,952 KB
testcase_44 AC 36 ms
52,132 KB
testcase_45 AC 34 ms
52,820 KB
testcase_46 AC 34 ms
53,596 KB
testcase_47 AC 36 ms
53,752 KB
testcase_48 AC 36 ms
52,472 KB
testcase_49 AC 36 ms
51,980 KB
testcase_50 AC 37 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = [1<<i for i in range(n)]
print(*ans)
0