結果

問題 No.1042 愚直大学
ユーザー fine
提出日時 2020-05-01 23:52:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 166,404 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 15:57:48
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long double;

constexpr char newl = '\n';

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

    ll p, q;
    cin >> p >> q;

    ll ok = 1, ng = 1e18;
    for (int i = 0; i < 1000; i++) {
        ll mid = (ok + ng) / 2;
        (mid * mid <= p + q * mid * log2(mid) ? ok : ng) = mid;
    }
    cout << fixed << setprecision(20) << ok << newl;

    return 0;
}
0