結果

問題 No.1286 Stone Skipping
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-07-28 06:46:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 194,404 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 16:12:02
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using i64 = long long;

inline i64 lb(i64 x) {return x & (-x);}

i64 check(i64 x, int k)
{
	i64 sum = 0;
	while (k--)
	{
		sum += x;
		x /= 2;
	}
	return sum;
}

void solve() {
    i64 n, minx;
    
    cin >> n;
    minx = n;
    double d = 1.0;
    for(int i = 2; i <= 61; i ++) {
        d += 1.0 / i;
        i64 p = n / d;
        for(i64 x = p - 100; x <= p + 100; x ++) {
            if(check(x, i) == n) minx = min(minx, x);
        }
    }
    cout << minx << "\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int T;
    T = 1;
    while(T --)
        solve();
}
0