結果

問題 No.450 ベー君のシャトルラン
ユーザー pekempeypekempey
提出日時 2016-12-01 00:36:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-05-05 16:06:57
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,576 KB
testcase_01 AC 134 ms
88,704 KB
testcase_02 AC 140 ms
88,704 KB
testcase_03 AC 157 ms
88,320 KB
testcase_04 AC 157 ms
88,704 KB
testcase_05 AC 167 ms
88,576 KB
testcase_06 AC 162 ms
88,704 KB
testcase_07 AC 190 ms
88,832 KB
testcase_08 AC 190 ms
88,832 KB
testcase_09 AC 189 ms
88,832 KB
testcase_10 AC 195 ms
88,448 KB
testcase_11 AC 186 ms
88,320 KB
testcase_12 AC 183 ms
88,320 KB
testcase_13 AC 188 ms
88,704 KB
testcase_14 AC 190 ms
88,832 KB
testcase_15 AC 195 ms
88,832 KB
testcase_16 AC 180 ms
88,704 KB
testcase_17 AC 192 ms
88,704 KB
testcase_18 AC 195 ms
88,704 KB
testcase_19 AC 192 ms
88,448 KB
testcase_20 AC 198 ms
88,704 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(float(ans))
0