結果

問題 No.1286 Stone Skipping
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-28 14:41:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-04-28 19:44:29
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,216 KB
testcase_01 WA -
testcase_02 AC 54 ms
62,080 KB
testcase_03 AC 49 ms
58,368 KB
testcase_04 AC 49 ms
58,368 KB
testcase_05 AC 49 ms
58,496 KB
testcase_06 AC 49 ms
58,112 KB
testcase_07 AC 52 ms
58,240 KB
testcase_08 AC 53 ms
60,928 KB
testcase_09 WA -
testcase_10 AC 53 ms
60,672 KB
testcase_11 WA -
testcase_12 AC 53 ms
60,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 46 ms
62,080 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 AC 46 ms
62,336 KB
testcase_21 AC 48 ms
61,952 KB
testcase_22 AC 50 ms
60,928 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 45 ms
61,952 KB
testcase_26 AC 45 ms
61,824 KB
testcase_27 WA -
testcase_28 AC 48 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())


def  cal(a):
    cnt = 0
    for i in range(k):
        cnt += a
        a//=2
    return cnt

ans = d
for k in range(65):
    ng = 0
    ok = d
    while ok - ng > 1:
        mid = (ok + ng)//2
        t=cal(mid)
        if  t >= d:
            ok = mid
        else:
            ng = mid
    if cal(ok) == d:
    	ans = min(ans,mid)


print(ans)
0