結果

問題 No.450 ベー君のシャトルラン
ユーザー pekempeypekempey
提出日時 2016-12-01 00:39:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-05-05 16:04:15
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
11,264 KB
testcase_01 AC 40 ms
11,392 KB
testcase_02 AC 44 ms
11,392 KB
testcase_03 AC 55 ms
11,392 KB
testcase_04 AC 51 ms
11,392 KB
testcase_05 AC 57 ms
11,392 KB
testcase_06 AC 56 ms
11,392 KB
testcase_07 AC 78 ms
11,392 KB
testcase_08 AC 71 ms
11,520 KB
testcase_09 AC 74 ms
11,392 KB
testcase_10 AC 74 ms
11,392 KB
testcase_11 AC 69 ms
11,392 KB
testcase_12 AC 72 ms
11,392 KB
testcase_13 AC 70 ms
11,520 KB
testcase_14 AC 75 ms
11,520 KB
testcase_15 AC 75 ms
11,392 KB
testcase_16 AC 68 ms
11,392 KB
testcase_17 AC 76 ms
11,392 KB
testcase_18 AC 73 ms
11,392 KB
testcase_19 AC 74 ms
11,392 KB
testcase_20 AC 72 ms
11,392 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

vl, vr = map(int, input().split())
d = int(input())
w = int(input())

D = d
ans = Fraction(0)
for _ in range(100):
	t = Fraction(D, w + vr)
	dd = t * (w - vl)
	tt = Fraction(dd, w + vl)
	D -= (t + tt) * (vr + vl)
	ans += (t + tt) * w

print("{0:.20f}".format(float(ans)))
0