結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 100 ms
76,852 KB
testcase_02 AC 209 ms
77,404 KB
testcase_03 AC 226 ms
76,724 KB
testcase_04 AC 89 ms
76,796 KB
testcase_05 WA -
testcase_06 AC 268 ms
77,356 KB
testcase_07 AC 269 ms
77,536 KB
testcase_08 AC 269 ms
77,428 KB
testcase_09 AC 274 ms
77,268 KB
testcase_10 WA -
testcase_11 AC 268 ms
77,520 KB
testcase_12 AC 267 ms
77,100 KB
testcase_13 AC 267 ms
77,472 KB
testcase_14 AC 270 ms
77,160 KB
testcase_15 WA -
testcase_16 AC 269 ms
77,008 KB
testcase_17 AC 272 ms
76,996 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 270 ms
76,984 KB
testcase_22 AC 275 ms
76,888 KB
testcase_23 AC 275 ms
77,256 KB
testcase_24 WA -
testcase_25 AC 267 ms
77,172 KB
testcase_26 AC 37 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
for _ in range(N):
    T,m,L=map(float,input().split())
    b=20*m*T
    c = -20*m*L
    ans = (b**2-4*c)**0.5 - b
    ans /= 2
    ans *= 3600/1000 * 100
    ans = int(ans)
    print(f"{ans/100:.2f}")
0