結果

問題 No.1286 Stone Skipping
ユーザー rabimearabimea
提出日時 2023-01-25 01:35:47
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 201,676 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 09:20:46
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using pii = pair <int, int>;
const ll mod = 998244353;
//~ const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

ll f(ll x, int c) {
	if(c == 0) return 0;
	return x + f(x / 2, c - 1);
}

int main() {
	ios :: sync_with_stdio(false);
	
	ll d; cin >> d;
	
	ll ans = d;
	for(int i = 1; i <= 64; i ++) {
		ll l = 0, r = d + 1;
		while(l + 1 < r) {
			ll m = (l + r) / 2;
			if(f(m - 1, i) >= d)
				r = m;
			else
				l = m;
		}
		
		if(f(l, i) == d)
			ans = min(ans, l);
	}
	
	cout << ans << '\n';
}
0