結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー legosukelegosuke
提出日時 2022-06-17 22:01:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 201,008 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-09 07:55:32
合計ジャッジ時間 20,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 127 ms
6,816 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 88 ms
6,816 KB
testcase_05 AC 440 ms
6,816 KB
testcase_06 AC 701 ms
6,816 KB
testcase_07 AC 708 ms
6,816 KB
testcase_08 AC 702 ms
6,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 685 ms
6,816 KB
testcase_12 AC 705 ms
6,816 KB
testcase_13 AC 693 ms
6,816 KB
testcase_14 AC 717 ms
6,820 KB
testcase_15 WA -
testcase_16 AC 745 ms
6,820 KB
testcase_17 AC 727 ms
6,816 KB
testcase_18 AC 727 ms
6,820 KB
testcase_19 AC 713 ms
6,820 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

double f(double T, double mu, double L) {
    return 36 * (sqrt(T * T + L / (5 * mu)) - T) * mu;
}

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