結果

問題 No.450 ベー君のシャトルラン
ユーザー kimiyukikimiyuki
提出日時 2016-12-01 00:29:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 16:03:43
合計ジャッジ時間 34,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,445 ms
5,248 KB
testcase_01 AC 1,416 ms
5,376 KB
testcase_02 AC 1,471 ms
5,376 KB
testcase_03 AC 1,462 ms
5,376 KB
testcase_04 AC 1,448 ms
5,376 KB
testcase_05 AC 1,446 ms
5,376 KB
testcase_06 AC 1,460 ms
5,376 KB
testcase_07 AC 1,464 ms
5,376 KB
testcase_08 AC 1,462 ms
5,376 KB
testcase_09 AC 1,440 ms
5,376 KB
testcase_10 AC 1,454 ms
5,376 KB
testcase_11 AC 1,475 ms
5,376 KB
testcase_12 AC 1,440 ms
5,376 KB
testcase_13 AC 1,458 ms
5,376 KB
testcase_14 AC 1,442 ms
5,376 KB
testcase_15 AC 1,456 ms
5,376 KB
testcase_16 AC 1,438 ms
5,376 KB
testcase_17 AC 1,446 ms
5,376 KB
testcase_18 AC 1,476 ms
5,376 KB
testcase_19 AC 1,503 ms
5,376 KB
testcase_20 AC 1,456 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);
    __float128 d = a_d;
    __float128 acc = 0;
    repeat (i,int(2e6)) {
        __float128 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