結果

問題 No.1286 Stone Skipping
ユーザー zentsu999zentsu999
提出日時 2020-11-13 22:42:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 61,660 KB
最終ジャッジ日時 2024-07-22 21:41:53
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

D=int(input())
L=D//2
R=D
while L!=R:
    now=(L+R)//2
    count=0
    while count<D and now>0:
        count+=now
        now//=2
    if count>=D:
        R=(L+R)//2
    else:
        L=(L+R)//2+1
ok=0
for _ in range(10**7):
    count=0
    now=L
    while count<D:
        count+=now
        now//=2
    if count==D:
        ok=1
        break
    L+=1
if ok==0:
    L+=D//3
    for _ in range(10**7):
        count=0
        now=L
        while count<D:
            count+=now
            now//=2
        if count==D:
            ok=1
            break
        L+=1
print(L if ok else D)
0