結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー legosukelegosuke
提出日時 2022-06-17 23:13:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 781 ms / 3,000 ms
コード長 452 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 201,636 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 09:38:38
合計ジャッジ時間 21,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 130 ms
5,248 KB
testcase_02 AC 531 ms
5,248 KB
testcase_03 AC 362 ms
5,248 KB
testcase_04 AC 91 ms
5,248 KB
testcase_05 AC 463 ms
5,248 KB
testcase_06 AC 738 ms
5,248 KB
testcase_07 AC 742 ms
5,248 KB
testcase_08 AC 737 ms
5,248 KB
testcase_09 AC 726 ms
5,248 KB
testcase_10 AC 714 ms
5,248 KB
testcase_11 AC 717 ms
5,248 KB
testcase_12 AC 720 ms
5,248 KB
testcase_13 AC 734 ms
5,248 KB
testcase_14 AC 746 ms
5,248 KB
testcase_15 AC 715 ms
5,248 KB
testcase_16 AC 743 ms
5,248 KB
testcase_17 AC 769 ms
5,248 KB
testcase_18 AC 773 ms
5,248 KB
testcase_19 AC 752 ms
5,248 KB
testcase_20 AC 756 ms
5,248 KB
testcase_21 AC 770 ms
5,248 KB
testcase_22 AC 755 ms
5,248 KB
testcase_23 AC 781 ms
5,248 KB
testcase_24 AC 748 ms
5,248 KB
testcase_25 AC 756 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using D = long double;
const D EPS = 1e-10;

D f(D T, D mu, D L) {
    D V = 3.6 * (sqrt(100 * mu * mu * T * T + 20 * mu * L) - 10.0 * mu * T);
    if (abs(V) < EPS) V = 0;
    return V;
}

int main() {
    int N;
    cin >> N;
    for (int i = 0; i < N; ++i) {
        D T, mu, L;
        cin >> T >> mu >> L;
        cout << fixed << setprecision(2) << (int)(f(T, mu, L) * 100) / 100.0 << endl;
    }
}
0