結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー siman
提出日時 2022-08-11 01:39:06
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 140,836 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 10:45:44
合計ジャッジ時間 22,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;

  for (int i = 0; i < N; ++i) {
    double T, U, L;
    cin >> T >> U >> L;

    ll ok = 0;
    ll ng = 520000;
    ll t = T * 100;
    ll u = U * 100;
    ll l = L * 100;

    while (abs(ok - ng) >= 2) {
      ll v = (ok + ng) / 2;
      ll len = v * (25 * v + 18 * t * u);

      if (len <= l * 6480 * u) {
        ok = v;
      } else {
        ng = v;
      }
    }

    cout << fixed << setprecision(2) << floor(100 * ok) / 10000 << endl;
  }

  return 0;
}
0