結果

問題 No.450 ベー君のシャトルラン
ユーザー y_mazuny_mazun
提出日時 2016-12-06 20:47:57
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-28 03:15:02
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

v = float(reduce(lambda x, y: x + y, map(int, raw_input().split())))
d = float(input())
w = float(input())
print "%.8f" % (d / v * w)
0