結果

問題 No.1286 Stone Skipping
ユーザー FromBooskaFromBooska
提出日時 2023-02-15 20:59:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 749 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 82,108 KB
最終ジャッジ日時 2024-07-18 04:20:14
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,744 KB
testcase_01 AC 34 ms
52,676 KB
testcase_02 AC 37 ms
58,300 KB
testcase_03 AC 34 ms
52,152 KB
testcase_04 AC 34 ms
52,500 KB
testcase_05 AC 31 ms
53,632 KB
testcase_06 AC 32 ms
52,280 KB
testcase_07 AC 34 ms
52,456 KB
testcase_08 AC 32 ms
52,696 KB
testcase_09 AC 31 ms
53,044 KB
testcase_10 AC 32 ms
53,560 KB
testcase_11 AC 31 ms
52,492 KB
testcase_12 AC 31 ms
52,772 KB
testcase_13 AC 34 ms
58,284 KB
testcase_14 AC 33 ms
57,512 KB
testcase_15 AC 35 ms
58,652 KB
testcase_16 AC 33 ms
57,508 KB
testcase_17 AC 35 ms
57,548 KB
testcase_18 AC 32 ms
52,200 KB
testcase_19 AC 33 ms
53,288 KB
testcase_20 AC 36 ms
57,584 KB
testcase_21 AC 37 ms
57,944 KB
testcase_22 AC 37 ms
59,212 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

# むむむ、二分探索と思ったらDにぴったり止まる必要ある
# つまり行き過ぎてはダメなので二分探索ではダメか
# その数が辿り着く数列を考える必要あるか

def max_distance(num):
    dist = 0
    test = False
    while num >= 1:
        dist += num
        num //= 2
        if dist == D:
            test = True
    return dist, test

#for i in range(1, 30):
#    print(i, max_distance(i))

OK = D+1
NG = 0
while OK-NG>1:
    mid = (OK+NG)//2
    if max_distance(mid)[0] >= D:
        OK = mid
    else:
        NG = mid
#print(OK)

candidate = OK
while True:
    if max_distance(candidate)[1] == True:
        print(candidate)
        break
    else:
        candidate += 1
0