結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー tnakao0123tnakao0123
提出日時 2022-06-18 19:15:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 849 ms / 3,000 ms
コード長 770 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 48,440 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 10:08:24
合計ジャッジ時間 23,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 147 ms
6,820 KB
testcase_02 AC 593 ms
6,816 KB
testcase_03 AC 411 ms
6,816 KB
testcase_04 AC 103 ms
6,820 KB
testcase_05 AC 522 ms
6,820 KB
testcase_06 AC 823 ms
6,820 KB
testcase_07 AC 826 ms
6,816 KB
testcase_08 AC 828 ms
6,816 KB
testcase_09 AC 828 ms
6,816 KB
testcase_10 AC 825 ms
6,816 KB
testcase_11 AC 825 ms
6,820 KB
testcase_12 AC 825 ms
6,820 KB
testcase_13 AC 826 ms
6,820 KB
testcase_14 AC 824 ms
6,816 KB
testcase_15 AC 824 ms
6,820 KB
testcase_16 AC 844 ms
6,820 KB
testcase_17 AC 845 ms
6,820 KB
testcase_18 AC 846 ms
6,816 KB
testcase_19 AC 849 ms
6,816 KB
testcase_20 AC 849 ms
6,816 KB
testcase_21 AC 847 ms
6,816 KB
testcase_22 AC 846 ms
6,820 KB
testcase_23 AC 845 ms
6,816 KB
testcase_24 AC 848 ms
6,816 KB
testcase_25 AC 843 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1980.cc:  No.1980 [Cherry 4th Tune D] 停止距離 - yukicoder
 */

#include<cstdio>
#include<cmath>
#include<algorithm>

using namespace std;

/* constant */

const int CNT = 200;

/* typedef */

/* global variables */

double s(double v, double t, double m) {
  return v * t + v * v / (20 * m);
}

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    double t, m, l;
    scanf("%lf%lf%lf", &t, &m, &l);

    double v0 = 0.0, v1 = 5100.0 * 1000 / 3600;
    for (int cnt = 0; cnt < CNT; cnt++) {
      double v = (v0 + v1) / 2;
      if (s(v, t, m) <= l) v0 = v;
      else v1 = v;
    }

    double v = v1 * 3600 / 1000;
    v = floor(v * 100) / 100;
    printf("%.2lf\n", v);
  }
  return 0;
}
0