結果

問題 No.1184 Hà Nội
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-18 07:45:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 80 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 309,004 KB
最終ジャッジ日時 2024-09-19 00:36:57
合計ジャッジ時間 2,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,448 KB
testcase_01 AC 35 ms
53,536 KB
testcase_02 AC 32 ms
53,008 KB
testcase_03 AC 33 ms
53,592 KB
testcase_04 AC 32 ms
52,684 KB
testcase_05 AC 32 ms
53,344 KB
testcase_06 AC 32 ms
52,808 KB
testcase_07 AC 35 ms
52,892 KB
testcase_08 AC 36 ms
52,612 KB
testcase_09 AC 36 ms
52,704 KB
testcase_10 AC 37 ms
51,872 KB
testcase_11 AC 36 ms
52,940 KB
testcase_12 AC 38 ms
51,884 KB
testcase_13 AC 35 ms
52,724 KB
testcase_14 AC 33 ms
52,696 KB
testcase_15 AC 33 ms
52,960 KB
testcase_16 AC 33 ms
52,244 KB
testcase_17 AC 34 ms
52,532 KB
testcase_18 AC 33 ms
52,740 KB
testcase_19 AC 34 ms
52,892 KB
testcase_20 AC 33 ms
53,484 KB
testcase_21 AC 34 ms
53,076 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