結果
問題 |
No.1980 [Cherry 4th Tune D] 停止距離
|
ユーザー |
![]() |
提出日時 | 2022-08-11 01:20:22 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 1,474 ms |
コンパイル使用メモリ | 140,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 10:30:02 |
合計ジャッジ時間 | 31,314 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 WA * 9 |
ソースコード
#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; double ok = 0.0; double ng = 5200; for (int i = 0; i < 200; ++i) { double v = (ok + ng) / 2.0; double l = 20 * u * v * T + (v * v); if (l <= L * 20 * u) { ok = v; } else { ng = v; } } double ans = 3600 * ok / 1000; cout << fixed << setprecision(2) << floor(100 * ans) / 100 << endl; } return 0; }