結果
問題 | No.450 ベー君のシャトルラン |
ユーザー | hanorver |
提出日時 | 2016-12-01 00:38:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 549 ms |
コンパイル使用メモリ | 63,740 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 14:49:47 |
合計ジャッジ時間 | 1,475 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> #include <cstdio> int main() { double left_train_speed, right_train_speed, distance, bee_spped; std::cin >> left_train_speed >> right_train_speed; std::cin >> distance >> bee_spped; printf("%.10f\n", distance / (left_train_speed + right_train_speed) * bee_spped); return 0; }