結果
| 問題 |
No.450 ベー君のシャトルラン
|
| コンテスト | |
| ユーザー |
aka_satana_ha
|
| 提出日時 | 2017-12-01 11:57:46 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 207 bytes |
| コンパイル時間 | 127 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 21,120 KB |
| 最終ジャッジ日時 | 2024-11-27 21:24:44 |
| 合計ジャッジ時間 | 7,506 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 TLE * 2 |
ソースコード
vl,vr = [int(i) for i in input().split()]
d = int(input())
w = int(input())
dn=d
d_sum=0
n=1
while(dn>0.00000001):
v=vl if n%2==0 else vr
t=dn/(w+v)
dn=dn-(vl+vr)*t
d_sum+=w*t
print(d_sum)
aka_satana_ha