結果

問題 No.1286 Stone Skipping
ユーザー chocoruskchocorusk
提出日時 2020-11-13 21:28:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 1,246 ms
コンパイル使用メモリ 121,960 KB
最終ジャッジ日時 2025-01-15 22:33:52
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
using ll=long long;
typedef pair<int, int> P;
ll calc(ll x, int k){
    ll res=0;
    for(int i=0; i<k; i++){
        res+=x;
        x>>=1;
    }
    return res;
}
int main()
{
    ll d; cin>>d;
    ll ans=d;
    for(int k=1; k<=60; k++){
        ll l=0, r=2e18;
        while(r-l>1){
            ll m=(l+r)/2;
            if(calc(m, k)>=d){
                r=m;
            }else{
                l=m;
            }
        }
        if(calc(r, k)==d){
            ans=min(ans, r);
        }
    }
    cout<<ans<<endl;
    return 0;
}
0