結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,120 ms
10,496 KB
testcase_01 AC 1,109 ms
10,496 KB
testcase_02 AC 1,059 ms
10,496 KB
testcase_03 AC 1,122 ms
10,496 KB
testcase_04 AC 1,118 ms
10,496 KB
testcase_05 AC 1,300 ms
10,496 KB
testcase_06 AC 1,102 ms
10,624 KB
testcase_07 AC 1,167 ms
10,496 KB
testcase_08 AC 1,205 ms
10,496 KB
testcase_09 AC 1,251 ms
10,496 KB
testcase_10 AC 1,193 ms
10,496 KB
testcase_11 AC 1,172 ms
10,496 KB
testcase_12 AC 1,236 ms
10,624 KB
testcase_13 AC 1,154 ms
10,496 KB
testcase_14 AC 1,233 ms
10,496 KB
testcase_15 AC 1,149 ms
10,496 KB
testcase_16 AC 1,235 ms
10,624 KB
testcase_17 AC 1,155 ms
10,496 KB
testcase_18 AC 1,222 ms
10,496 KB
testcase_19 AC 1,280 ms
10,496 KB
testcase_20 AC 1,121 ms
10,624 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
vl, vr = map(int, input().split())
d = int(input())
w = int(input())
acc = 0
for _ in range(10**6):
    dt = d / (w + vr)
    acc += dt * w
    d -= dt * (vl + vr)
    dt = d / (vl + w)
    acc += dt * w
    d -= dt * (vl + vr)
print(acc)
0