結果

問題 No.1184 Hà Nội
ユーザー qumazakiqumazaki
提出日時 2020-09-12 02:11:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 57 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 308,000 KB
最終ジャッジ日時 2024-06-09 09:23:53
合計ジャッジ時間 2,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 36 ms
52,212 KB
testcase_02 AC 37 ms
51,624 KB
testcase_03 AC 36 ms
52,820 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 36 ms
52,160 KB
testcase_06 AC 34 ms
52,212 KB
testcase_07 AC 35 ms
51,572 KB
testcase_08 AC 35 ms
53,152 KB
testcase_09 AC 36 ms
52,572 KB
testcase_10 AC 36 ms
53,184 KB
testcase_11 AC 35 ms
52,368 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 36 ms
53,136 KB
testcase_14 AC 38 ms
52,112 KB
testcase_15 AC 38 ms
52,364 KB
testcase_16 AC 37 ms
52,960 KB
testcase_17 AC 36 ms
51,724 KB
testcase_18 AC 38 ms
52,596 KB
testcase_19 AC 38 ms
53,456 KB
testcase_20 AC 38 ms
52,680 KB
testcase_21 AC 33 ms
51,864 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,l = map(int,input().split())
x = -(-n//l)
print(2**x-1)
0