結果

問題 No.2609 Decreasing GCDs
ユーザー hiro1729hiro1729
提出日時 2024-01-19 21:38:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 52,900 KB
最終ジャッジ日時 2024-09-28 04:08:34
合計ジャッジ時間 2,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,496 KB
testcase_01 AC 35 ms
52,856 KB
testcase_02 AC 36 ms
52,120 KB
testcase_03 AC 36 ms
52,432 KB
testcase_04 AC 37 ms
52,844 KB
testcase_05 AC 35 ms
51,960 KB
testcase_06 AC 37 ms
52,400 KB
testcase_07 AC 37 ms
52,148 KB
testcase_08 AC 37 ms
52,220 KB
testcase_09 AC 36 ms
52,672 KB
testcase_10 AC 38 ms
51,880 KB
testcase_11 AC 36 ms
52,556 KB
testcase_12 AC 36 ms
52,368 KB
testcase_13 AC 36 ms
52,508 KB
testcase_14 AC 37 ms
52,104 KB
testcase_15 AC 36 ms
52,564 KB
testcase_16 AC 36 ms
52,480 KB
testcase_17 AC 36 ms
52,440 KB
testcase_18 AC 36 ms
52,748 KB
testcase_19 AC 37 ms
52,628 KB
testcase_20 AC 37 ms
52,900 KB
testcase_21 AC 36 ms
52,344 KB
testcase_22 AC 36 ms
51,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [2**(N-1)]
for i in range(1, N):
	ans.append(ans[-1] + 2**(N-1-i))
print(*ans)
0