結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー ニックネームニックネーム
提出日時 2022-06-17 22:19:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-09 08:26:04
合計ジャッジ時間 29,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 272 ms
76,544 KB
testcase_02 AC 870 ms
76,416 KB
testcase_03 WA -
testcase_04 AC 217 ms
76,672 KB
testcase_05 AC 788 ms
76,544 KB
testcase_06 WA -
testcase_07 AC 1,195 ms
76,544 KB
testcase_08 WA -
testcase_09 AC 1,189 ms
77,056 KB
testcase_10 WA -
testcase_11 AC 1,181 ms
77,312 KB
testcase_12 AC 1,170 ms
76,544 KB
testcase_13 WA -
testcase_14 AC 1,203 ms
76,672 KB
testcase_15 WA -
testcase_16 AC 1,164 ms
76,800 KB
testcase_17 AC 1,184 ms
76,928 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,171 ms
76,928 KB
testcase_23 AC 1,171 ms
77,056 KB
testcase_24 AC 1,198 ms
76,800 KB
testcase_25 AC 1,181 ms
77,056 KB
testcase_26 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor
for _ in range(int(input())):
    t, m, l = map(float, input().split())
    ok = 0; ng = 5101
    for _ in range(100):
        mid = (ok+ng)/2
        v = mid/3.6
        if v*t+v*v/20/m < l: ok = mid
        else: ng = mid
    print(f"{floor(mid*100)/100:.2f}")
0