結果

問題 No.1286 Stone Skipping
ユーザー H20H20
提出日時 2020-11-15 16:49:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 59,292 KB
最終ジャッジ日時 2024-07-23 01:16:37
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,356 KB
testcase_01 AC 43 ms
56,996 KB
testcase_02 WA -
testcase_03 AC 41 ms
57,476 KB
testcase_04 WA -
testcase_05 AC 40 ms
57,732 KB
testcase_06 WA -
testcase_07 AC 40 ms
58,172 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
57,052 KB
testcase_11 AC 40 ms
57,540 KB
testcase_12 AC 39 ms
57,100 KB
testcase_13 AC 41 ms
57,992 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
57,620 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
57,200 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 40 ms
57,216 KB
testcase_26 AC 40 ms
57,676 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#めぐる式二部探索
#参考サイト:https://aotamasaki.hatenablog.com/entry/meguru_bisect

D = int(input())
def is_ok(arg):
    jump = 0
    while arg>0:
        jump += arg
        arg = arg//2
    return jump >= D

def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
ans = meguru_bisect(0,10**18 + 1)

jump = 0
anstemp = ans
while anstemp >0:
    jump += anstemp
    anstemp = anstemp//2

if jump>D: 
    ans+=1

print(ans)
0