結果

問題 No.1286 Stone Skipping
ユーザー shotoyooshotoyoo
提出日時 2020-11-13 21:36:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-07-22 20:32:55
合計ジャッジ時間 2,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 45 ms
62,208 KB
testcase_03 AC 44 ms
59,648 KB
testcase_04 AC 42 ms
59,904 KB
testcase_05 AC 42 ms
59,776 KB
testcase_06 AC 42 ms
60,544 KB
testcase_07 AC 43 ms
59,520 KB
testcase_08 AC 49 ms
61,056 KB
testcase_09 WA -
testcase_10 AC 46 ms
61,312 KB
testcase_11 WA -
testcase_12 AC 46 ms
61,312 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 51 ms
64,128 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 RE -
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 48 ms
63,232 KB
testcase_21 AC 48 ms
62,976 KB
testcase_22 AC 47 ms
61,056 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 54 ms
64,000 KB
testcase_26 AC 52 ms
63,872 KB
testcase_27 WA -
testcase_28 AC 50 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

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())
ans = d
def sub(x, k):
    v = 0
    i = 0
    while x>0:
        v += x
        x //= 2
        i += 1
        if i>=k:
            break
    return v>=d
def val(x, k):
    v = 0
    i = 0
    while x>0:
        v += x
        x //= 2
        i += 1
        if i>=k:
            break
    return v

def proc(k):
    l = 0
    r = d
    while l<r-1:
        m = (l+r)//2
        if sub(m,k):
            r = m
        else:
            l = m
    if val(m,k)==d:
        return m
    else:
        return None
for v in range(2,100):
    tmp = proc(v)
    if tmp is not None:
        ans = min(ans, tmp)
print(ans)
0