結果

問題 No.1184 Hà Nội
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-18 07:55:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 83 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 320,016 KB
最終ジャッジ日時 2023-08-15 07:24:22
合計ジャッジ時間 5,490 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,244 KB
testcase_01 AC 78 ms
71,276 KB
testcase_02 AC 75 ms
71,244 KB
testcase_03 AC 73 ms
71,160 KB
testcase_04 AC 72 ms
71,280 KB
testcase_05 AC 74 ms
71,208 KB
testcase_06 AC 74 ms
71,280 KB
testcase_07 AC 74 ms
71,440 KB
testcase_08 AC 77 ms
71,676 KB
testcase_09 AC 75 ms
71,160 KB
testcase_10 AC 76 ms
71,280 KB
testcase_11 AC 75 ms
71,548 KB
testcase_12 AC 73 ms
71,040 KB
testcase_13 AC 74 ms
71,296 KB
testcase_14 AC 74 ms
71,360 KB
testcase_15 AC 73 ms
71,672 KB
testcase_16 AC 78 ms
71,312 KB
testcase_17 AC 77 ms
71,628 KB
testcase_18 AC 75 ms
71,268 KB
testcase_19 AC 77 ms
71,340 KB
testcase_20 AC 76 ms
71,580 KB
testcase_21 AC 76 ms
71,248 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil

n,l = map(int,input().split())

n=ceil(n/l)

print(2**n-1)

0