結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー shobonvipshobonvip
提出日時 2022-06-17 23:03:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 778 ms / 3,000 ms
コード長 281 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-10-09 09:27:52
合計ジャッジ時間 19,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T = int(input())
for _ in range(T):
	tf,muf,lf = input().split()
	t = int(tf.replace(".", ""))
	mu = int(muf.replace(".", ""))
	l = int(lf.replace(".", ""))
	#print(t,mu,l)
	targ = int((-10*mu*t+math.sqrt(100*mu*mu*t*t+20*10000*mu*l))*36/1000)
	print(f"{targ/100:.2f}")
0