結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー k_o_pasturek_o_pasture
提出日時 2022-06-17 22:35:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 78,152 KB
最終ジャッジ日時 2024-10-09 08:49:15
合計ジャッジ時間 19,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,832 KB
testcase_01 AC 200 ms
77,136 KB
testcase_02 AC 538 ms
77,152 KB
testcase_03 AC 395 ms
77,572 KB
testcase_04 AC 172 ms
77,052 KB
testcase_05 AC 482 ms
77,304 KB
testcase_06 AC 712 ms
77,212 KB
testcase_07 AC 700 ms
77,252 KB
testcase_08 AC 696 ms
77,628 KB
testcase_09 AC 704 ms
77,100 KB
testcase_10 WA -
testcase_11 AC 732 ms
77,152 KB
testcase_12 AC 730 ms
77,320 KB
testcase_13 AC 704 ms
77,480 KB
testcase_14 AC 714 ms
77,532 KB
testcase_15 WA -
testcase_16 AC 745 ms
77,148 KB
testcase_17 AC 752 ms
77,244 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 720 ms
77,572 KB
testcase_22 AC 736 ms
77,600 KB
testcase_23 AC 721 ms
77,124 KB
testcase_24 WA -
testcase_25 AC 731 ms
77,632 KB
testcase_26 AC 38 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

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((10*m*T)**2 + 20*m*L)
	ans = ans * 0.001 * 3600
	n = 5
	ans = floor(ans * 10 ** n) / (10 ** n)
	i = str(ans).find('.')
	if len(str(ans)) - i == 2:
		print(str(ans) + '0')
	elif len(str(ans)) - i == 1:
		print(str(ans) + '00')
	else:
		print(str(ans)[:i+3])
0