結果

問題 No.1184 Hà Nội
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-18 07:45:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 80 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 308,604 KB
最終ジャッジ日時 2023-10-19 04:20:44
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,468 KB
testcase_01 AC 41 ms
53,468 KB
testcase_02 AC 40 ms
53,468 KB
testcase_03 AC 39 ms
53,468 KB
testcase_04 AC 39 ms
53,468 KB
testcase_05 AC 39 ms
53,468 KB
testcase_06 AC 38 ms
53,468 KB
testcase_07 AC 38 ms
53,468 KB
testcase_08 AC 38 ms
53,468 KB
testcase_09 AC 39 ms
53,468 KB
testcase_10 AC 40 ms
53,468 KB
testcase_11 AC 38 ms
53,468 KB
testcase_12 AC 38 ms
53,468 KB
testcase_13 AC 39 ms
53,468 KB
testcase_14 AC 38 ms
53,468 KB
testcase_15 AC 39 ms
53,468 KB
testcase_16 AC 38 ms
53,468 KB
testcase_17 AC 39 ms
53,468 KB
testcase_18 AC 38 ms
53,468 KB
testcase_19 AC 38 ms
53,468 KB
testcase_20 AC 38 ms
53,468 KB
testcase_21 AC 38 ms
53,468 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n,l = map(int,input().split())
print(2 ** max(1,math.ceil(n/l)) - 1)
0