結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー k_o_pasturek_o_pasture
提出日時 2022-06-17 22:02:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-10-09 07:57:29
合計ジャッジ時間 19,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,floor

N = int(input())
for _ in range(N):
	T, m, L = map(float, input().split())
	ans = -10 * m * T + sqrt(100*m*m*T*T + 20*m*L)
	ans = floor(ans * 0.001 * 3600 * 100)/100
	print(format(ans,'.2f'))
0