結果

問題 No.450 ベー君のシャトルラン
ユーザー kimiyukikimiyuki
提出日時 2016-12-01 00:27:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 15:56:33
合計ジャッジ時間 23,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
5,248 KB
testcase_01 AC 1,036 ms
5,376 KB
testcase_02 AC 1,018 ms
5,376 KB
testcase_03 AC 1,015 ms
5,376 KB
testcase_04 AC 1,016 ms
5,376 KB
testcase_05 AC 1,016 ms
5,376 KB
testcase_06 AC 1,017 ms
5,376 KB
testcase_07 AC 1,010 ms
5,376 KB
testcase_08 AC 1,016 ms
5,376 KB
testcase_09 AC 1,016 ms
5,376 KB
testcase_10 AC 1,015 ms
5,376 KB
testcase_11 AC 1,016 ms
5,376 KB
testcase_12 AC 1,016 ms
5,376 KB
testcase_13 AC 1,014 ms
5,376 KB
testcase_14 AC 1,014 ms
5,376 KB
testcase_15 AC 1,012 ms
5,376 KB
testcase_16 AC 1,020 ms
5,376 KB
testcase_17 AC 1,014 ms
5,376 KB
testcase_18 AC 1,016 ms
5,376 KB
testcase_19 AC 1,017 ms
5,376 KB
testcase_20 AC 1,010 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
using namespace std;
int main() {
    int vl, vr, a_d, w; scanf("%d%d%d%d", &vl, &vr, &a_d, &w);
    long double d = a_d;
    long double acc = 0;
    repeat (i,int(1e6)) {
        long double dt = d / (w + vr);
        acc += dt * w;
        d -= dt * (vl + vr);
        dt = d / (vl + w);
        acc += dt * w;
        d -= dt * (vl + vr);
    }
    printf("%.12lf\n", double(acc));
    return 0;
}
0