結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー lloyzlloyz
提出日時 2022-06-17 23:38:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-09 10:17:07
合計ジャッジ時間 26,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 226 ms
76,672 KB
testcase_02 AC 701 ms
76,412 KB
testcase_03 AC 509 ms
76,336 KB
testcase_04 AC 178 ms
76,292 KB
testcase_05 AC 622 ms
76,544 KB
testcase_06 WA -
testcase_07 AC 969 ms
76,672 KB
testcase_08 AC 948 ms
76,800 KB
testcase_09 AC 948 ms
76,408 KB
testcase_10 WA -
testcase_11 AC 956 ms
76,672 KB
testcase_12 AC 950 ms
76,928 KB
testcase_13 AC 953 ms
77,312 KB
testcase_14 AC 968 ms
76,544 KB
testcase_15 WA -
testcase_16 AC 984 ms
76,544 KB
testcase_17 AC 972 ms
76,688 KB
testcase_18 AC 975 ms
76,416 KB
testcase_19 AC 976 ms
76,444 KB
testcase_20 AC 1,001 ms
76,544 KB
testcase_21 AC 979 ms
76,632 KB
testcase_22 AC 964 ms
76,416 KB
testcase_23 AC 982 ms
76,628 KB
testcase_24 AC 974 ms
76,484 KB
testcase_25 AC 957 ms
76,784 KB
testcase_26 AC 41 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    t, mu, l = map(float, input().split())
    left = 0.0
    right = 5200.0
    for _ in range(60):
        mid = (left + right) / 2
        v = 5 * mid / 18
        d = v * t + v**2 / (20 * mu)
        if d < l:
            left = mid
        else:
            right = mid
    right *= 100
    right = int(right)
    print(f"{right/100:.2f}")
0