結果

問題 No.450 ベー君のシャトルラン
ユーザー yansi819yansi819
提出日時 2024-05-18 19:04:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 103 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-05-18 19:05:01
合計ジャッジ時間 2,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,272 KB
testcase_01 AC 34 ms
53,024 KB
testcase_02 AC 32 ms
53,444 KB
testcase_03 AC 31 ms
53,016 KB
testcase_04 AC 32 ms
52,468 KB
testcase_05 AC 31 ms
52,736 KB
testcase_06 AC 35 ms
52,496 KB
testcase_07 AC 35 ms
52,740 KB
testcase_08 AC 36 ms
52,688 KB
testcase_09 AC 34 ms
53,156 KB
testcase_10 AC 34 ms
52,752 KB
testcase_11 AC 33 ms
52,548 KB
testcase_12 AC 33 ms
52,740 KB
testcase_13 AC 33 ms
52,628 KB
testcase_14 AC 31 ms
52,216 KB
testcase_15 AC 31 ms
51,624 KB
testcase_16 AC 32 ms
53,224 KB
testcase_17 AC 32 ms
53,352 KB
testcase_18 AC 34 ms
53,004 KB
testcase_19 AC 34 ms
52,336 KB
testcase_20 AC 35 ms
52,284 KB
testcase_21 AC 32 ms
52,192 KB
testcase_22 AC 39 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

vl, vr = map(int, input().split())
d = int(input())
w = int(input())
ans = w * d / (vl + vr)
print(ans)
0