結果

問題 No.1286 Stone Skipping
ユーザー maninimanini
提出日時 2021-01-25 18:52:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 62,552 KB
最終ジャッジ日時 2024-06-22 12:46:00
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,376 KB
testcase_01 AC 42 ms
58,880 KB
testcase_02 AC 47 ms
61,928 KB
testcase_03 AC 45 ms
60,700 KB
testcase_04 AC 45 ms
59,796 KB
testcase_05 AC 44 ms
60,092 KB
testcase_06 AC 45 ms
60,656 KB
testcase_07 AC 47 ms
61,176 KB
testcase_08 AC 47 ms
61,348 KB
testcase_09 AC 47 ms
61,436 KB
testcase_10 AC 46 ms
61,012 KB
testcase_11 AC 46 ms
61,216 KB
testcase_12 AC 45 ms
61,420 KB
testcase_13 AC 48 ms
61,284 KB
testcase_14 AC 48 ms
61,212 KB
testcase_15 AC 47 ms
61,056 KB
testcase_16 AC 48 ms
61,104 KB
testcase_17 AC 47 ms
61,128 KB
testcase_18 AC 40 ms
59,252 KB
testcase_19 AC 43 ms
59,368 KB
testcase_20 AC 46 ms
61,112 KB
testcase_21 AC 47 ms
61,540 KB
testcase_22 AC 46 ms
60,056 KB
testcase_23 AC 48 ms
62,204 KB
testcase_24 AC 47 ms
61,416 KB
testcase_25 AC 47 ms
61,680 KB
testcase_26 AC 44 ms
62,020 KB
testcase_27 AC 45 ms
60,856 KB
testcase_28 AC 49 ms
62,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

D = int(input())    # 数字

res = D
for i in range(1, 70):

    # 二分探索
    imin = 0
    imax = D
    while imax - imin > 1:
        imid = imin + (imax - imin) // 2

        check = imid
        t = imid
        for j in range(i):
            t //= 2
            check += t

        # 2分探索する。
        if check <= D:
            imin = imid
        else:
            imax = imid

    check = imin
    t = imin
    for j in range(i):
        t //= 2
        check += t
    if check == D:
        if res > imin:
            res = imin

print("{}".format(res))
0