結果

問題 No.1286 Stone Skipping
ユーザー shotoyooshotoyoo
提出日時 2020-11-13 21:26:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 59,388 KB
最終ジャッジ日時 2024-07-22 20:27:33
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,636 KB
testcase_01 AC 38 ms
52,232 KB
testcase_02 AC 40 ms
57,976 KB
testcase_03 AC 37 ms
52,508 KB
testcase_04 AC 39 ms
53,164 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,076 KB
testcase_07 AC 37 ms
52,628 KB
testcase_08 AC 37 ms
52,580 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 36 ms
52,960 KB
testcase_11 AC 37 ms
53,340 KB
testcase_12 AC 37 ms
53,492 KB
testcase_13 AC 39 ms
58,068 KB
testcase_14 AC 41 ms
57,024 KB
testcase_15 WA -
testcase_16 AC 40 ms
57,932 KB
testcase_17 AC 39 ms
56,948 KB
testcase_18 AC 38 ms
53,132 KB
testcase_19 AC 37 ms
53,584 KB
testcase_20 AC 39 ms
58,048 KB
testcase_21 AC 40 ms
56,960 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 39 ms
58,780 KB
testcase_26 AC 39 ms
58,124 KB
testcase_27 AC 39 ms
57,784 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


d = int(input())
def sub(x):
    v = x
    while x>0:
        x = x//2
        v += x
    return v>=d
def val(x):
    v = x
    while x>0:
        x = x//2
        v += x
        if v==d:
            return v
    return v
l = 0
r = d
while l<r-1:
    m = (l+r)//2
    if sub(m):
        r = m
    else:
        l = m
# print(r, val(r))
while val(r)>d:
    r -= 1
if val(r)==d:
    print(r)
else:
    print(d)
0