結果

問題 No.1286 Stone Skipping
ユーザー ygd.ygd.
提出日時 2020-11-14 19:29:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-07-23 09:58:03
合計ジャッジ時間 2,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
75,864 KB
testcase_01 AC 62 ms
75,644 KB
testcase_02 AC 64 ms
75,804 KB
testcase_03 AC 62 ms
75,988 KB
testcase_04 AC 62 ms
76,256 KB
testcase_05 AC 63 ms
76,236 KB
testcase_06 AC 63 ms
76,104 KB
testcase_07 AC 65 ms
75,880 KB
testcase_08 AC 64 ms
75,756 KB
testcase_09 AC 62 ms
75,936 KB
testcase_10 AC 64 ms
76,264 KB
testcase_11 AC 63 ms
76,408 KB
testcase_12 AC 64 ms
76,100 KB
testcase_13 AC 63 ms
76,108 KB
testcase_14 AC 64 ms
75,920 KB
testcase_15 AC 63 ms
75,924 KB
testcase_16 AC 62 ms
76,332 KB
testcase_17 AC 64 ms
76,380 KB
testcase_18 AC 66 ms
75,968 KB
testcase_19 AC 65 ms
75,968 KB
testcase_20 AC 65 ms
75,916 KB
testcase_21 AC 65 ms
75,980 KB
testcase_22 AC 65 ms
76,180 KB
testcase_23 AC 65 ms
75,948 KB
testcase_24 AC 63 ms
75,924 KB
testcase_25 AC 65 ms
76,060 KB
testcase_26 AC 66 ms
76,060 KB
testcase_27 AC 65 ms
76,336 KB
testcase_28 AC 64 ms
75,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
ok = pow(10,20)
ng = 0

def check(x,loop):
    ret = x
    for i in range(loop):
        x = x//2
        ret += x
    return ret

#print(check(5,1))
ans = float("inf")
MAX = 70
for i in range(MAX):
    ok = pow(10,20)
    ng = 0
    while abs(ok-ng) > 1: #and cnt < 100:
        mid = (ok+ng)//2
        #print(ok,mid,ng)
        if check(mid,i) >= D:
            ok = mid
        else:
            ng = mid
    #print(ok,check(ok,i))
    if check(ok,i) == D:
        ans = min(ans,ok)

print(ans)
0