結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,736 KB
testcase_01 WA -
testcase_02 AC 46 ms
62,020 KB
testcase_03 AC 43 ms
59,916 KB
testcase_04 AC 41 ms
59,528 KB
testcase_05 AC 42 ms
59,532 KB
testcase_06 AC 43 ms
59,668 KB
testcase_07 AC 44 ms
59,404 KB
testcase_08 AC 46 ms
61,288 KB
testcase_09 WA -
testcase_10 AC 46 ms
62,180 KB
testcase_11 WA -
testcase_12 AC 46 ms
61,812 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 46 ms
63,652 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 AC 46 ms
62,596 KB
testcase_21 AC 47 ms
63,404 KB
testcase_22 AC 47 ms
61,900 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 46 ms
63,992 KB
testcase_26 AC 47 ms
64,544 KB
testcase_27 WA -
testcase_28 AC 47 ms
64,012 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