結果

問題 No.1286 Stone Skipping
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-28 14:22:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 58,996 KB
最終ジャッジ日時 2024-04-28 19:37:13
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,796 KB
testcase_01 AC 39 ms
52,464 KB
testcase_02 AC 42 ms
58,480 KB
testcase_03 AC 38 ms
53,112 KB
testcase_04 AC 39 ms
51,688 KB
testcase_05 WA -
testcase_06 AC 40 ms
53,416 KB
testcase_07 AC 39 ms
52,208 KB
testcase_08 AC 39 ms
52,024 KB
testcase_09 AC 38 ms
52,292 KB
testcase_10 AC 40 ms
53,104 KB
testcase_11 AC 38 ms
53,064 KB
testcase_12 AC 38 ms
52,504 KB
testcase_13 AC 42 ms
57,704 KB
testcase_14 AC 42 ms
57,284 KB
testcase_15 WA -
testcase_16 AC 43 ms
57,936 KB
testcase_17 AC 41 ms
58,856 KB
testcase_18 AC 38 ms
52,180 KB
testcase_19 AC 37 ms
51,956 KB
testcase_20 AC 42 ms
58,264 KB
testcase_21 AC 41 ms
57,600 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 42 ms
57,848 KB
testcase_26 AC 42 ms
57,324 KB
testcase_27 AC 42 ms
57,916 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
ng = 0
ok = d

def  cal(a):
    cnt = 0
    while a:
        cnt += a
        a//=2
    return cnt

def  cal2(a):
    cnt = 0
    while a:
        cnt += a
        a//=2
        if cnt == d:
            return True
    return False

ans = d
while ok - ng > 1:
    mid = (ok + ng)//2
    if  cal(mid) >= d:
        ok = mid
    else:
        ng = mid

    if cal2(mid):
        ans = min(ans,mid)
        

print(ans)
0