結果
問題 | No.1980 [Cherry 4th Tune D] 停止距離 |
ユーザー | SSRS |
提出日時 | 2022-06-17 22:22:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 905 ms / 3,000 ms |
コード長 | 616 bytes |
コンパイル時間 | 1,818 ms |
コンパイル使用メモリ | 167,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 08:31:03 |
合計ジャッジ時間 | 24,269 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
//まさか #include <bits/stdc++.h> using namespace std; const double eps = 0.000000001; int main(){ int N; cin >> N; for (int i = 0; i < N; i++){ double T, m, L; cin >> T >> m >> L; double tv = 0, fv = 5100; for (int j = 0; j < 100; j++){ double mid = (tv + fv) / 2; if (mid * T + mid * mid / (20 * m) <= L){ tv = mid; } else { fv = mid; } } int ans = tv * 360 + eps; string ans2 = to_string(ans); while (ans2.size() < 3){ ans2.insert(ans2.begin(), '0'); } ans2.insert(ans2.end() - 2, '.'); cout << ans2 << endl; } }