結果

問題 No.3359 ブリング根の3桁精度近似計算
コンテスト
ユーザー a01sa01to
提出日時 2025-11-23 00:28:40
言語 C++23
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 578 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,783 ms
コンパイル使用メモリ 313,776 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-11-23 00:28:47
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int c;
  cin >> c;
  ll l = 0, r = 4'000;
  constexpr ll mul = 1'000'000'000'000'000;
  while (r - l > 1) {
    ll mid = (l + r) / 2;
    ll t = mid * mid * mid * mid * mid + mid * (mul / 1'000);
    // cerr << format("{}: {} {}", mid, t, c * mul) << '\n';
    (t <= c * mul ? l : r) = mid;
  }
  cout << format("{}.{:0>3}", l / 1'000, l % 1'000) << '\n';
  return 0;
}
0