結果
問題 | No.450 ベー君のシャトルラン |
ユーザー | ヒッキープログラミングするスレ GitHub ガチ |
提出日時 | 2016-12-02 00:52:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 841 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-05-05 17:19:28 |
合計ジャッジ時間 | 4,576 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
15,872 KB |
testcase_01 | AC | 25 ms
10,368 KB |
testcase_02 | AC | 25 ms
10,496 KB |
testcase_03 | AC | 24 ms
10,368 KB |
testcase_04 | AC | 24 ms
10,368 KB |
testcase_05 | AC | 25 ms
10,496 KB |
testcase_06 | AC | 26 ms
10,368 KB |
testcase_07 | AC | 26 ms
10,496 KB |
testcase_08 | AC | 26 ms
10,368 KB |
testcase_09 | AC | 26 ms
10,368 KB |
testcase_10 | AC | 25 ms
10,368 KB |
testcase_11 | AC | 26 ms
10,368 KB |
testcase_12 | AC | 25 ms
10,368 KB |
testcase_13 | AC | 25 ms
10,368 KB |
testcase_14 | AC | 25 ms
10,496 KB |
testcase_15 | AC | 25 ms
10,368 KB |
testcase_16 | AC | 25 ms
10,496 KB |
testcase_17 | AC | 24 ms
10,368 KB |
testcase_18 | AC | 25 ms
10,496 KB |
testcase_19 | AC | 27 ms
10,496 KB |
testcase_20 | AC | 25 ms
10,496 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
ソースコード
vl, vr = map(float, input().split()) d = float(input()) w = float(input()) # d0 == (w + vr) * t1 # t1 = d0 / (w + vr) # d1 = d0 - (vl + vr) * t1 = d0 * (w - vl) / (w + vr) # d1 == (w + vl) * t2 # t2 = d1 / (w + vl) = d0 * (w - vl) / (w + vr) / (w + vl) = t1 * (w - vl) / (w + vl) # d2 = d1 - (vl + vr) * t2 = d1 * (w - vr) / (w + vl) # d2 == (w * vr) * t3 # t3 = d2 / (w + vr) = d0 * (w - vl) / (w + vr)**2 / (w + vl) = t1 * (w - vl) / (w + vr) / (w + vl) # d3 = d2 - (vl + vr) * t3 = d2 * (w - vl) / (w + vr) # ans = w * (t1 + t2 + t3 + ...) # = w * d0 * (1 + (w - vl) * (1 + 1/(w + vl) + 1/(w+vr)/(w+vl) + ...)) / (w + vr) i = 0 ans = 0.0 while d > 0.000001 and i < 10000000: t1 = d / (w + vr) ans += w * t1 d = d - (vl + vr) * t1 t2 = d / (w + vl) ans += w * t2 d = d - (vl + vr) * t2 i += 1 print(ans)