結果

問題 No.450 ベー君のシャトルラン
ユーザー FromBooskaFromBooska
提出日時 2023-03-15 22:03:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-09-18 08:55:53
合計ジャッジ時間 1,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,524 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 32 ms
52,236 KB
testcase_03 AC 33 ms
51,704 KB
testcase_04 AC 32 ms
52,528 KB
testcase_05 AC 32 ms
51,740 KB
testcase_06 AC 33 ms
51,292 KB
testcase_07 AC 32 ms
52,088 KB
testcase_08 AC 32 ms
52,068 KB
testcase_09 AC 33 ms
52,896 KB
testcase_10 AC 33 ms
53,108 KB
testcase_11 AC 32 ms
52,684 KB
testcase_12 AC 32 ms
53,548 KB
testcase_13 AC 33 ms
51,616 KB
testcase_14 AC 36 ms
52,700 KB
testcase_15 AC 33 ms
53,308 KB
testcase_16 AC 33 ms
51,428 KB
testcase_17 AC 33 ms
52,440 KB
testcase_18 AC 32 ms
52,748 KB
testcase_19 AC 32 ms
53,192 KB
testcase_20 AC 32 ms
52,336 KB
testcase_21 AC 32 ms
52,928 KB
testcase_22 AC 31 ms
53,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 列車が衝突するまでの時間*ベー君のスピードが答えでいいのか?

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