結果

問題 No.450 ベー君のシャトルラン
ユーザー arukukaarukuka
提出日時 2016-11-14 08:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,982 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 56,976 KB
最終ジャッジ日時 2023-08-17 04:34:52
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,892 KB
testcase_01 AC 128 ms
56,432 KB
testcase_02 AC 127 ms
56,132 KB
testcase_03 AC 128 ms
56,312 KB
testcase_04 AC 128 ms
56,344 KB
testcase_05 AC 128 ms
56,276 KB
testcase_06 AC 128 ms
56,464 KB
testcase_07 AC 127 ms
56,976 KB
testcase_08 AC 128 ms
56,380 KB
testcase_09 AC 127 ms
56,456 KB
testcase_10 AC 128 ms
55,980 KB
testcase_11 AC 127 ms
56,348 KB
testcase_12 AC 126 ms
56,240 KB
testcase_13 AC 129 ms
56,124 KB
testcase_14 AC 128 ms
56,184 KB
testcase_15 AC 130 ms
56,476 KB
testcase_16 AC 127 ms
56,672 KB
testcase_17 AC 129 ms
56,456 KB
testcase_18 AC 127 ms
56,276 KB
testcase_19 AC 127 ms
55,956 KB
testcase_20 AC 128 ms
56,016 KB
testcase_21 AC 124 ms
55,980 KB
testcase_22 AC 127 ms
55,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.MathContext;
import java.util.Scanner;

public class Main {
  int vl, vr;
  int d;
  int w;

  BigDecimal checkai() {
    BigDecimal vl = new BigDecimal(this.vl, MathContext.DECIMAL128);
    BigDecimal vr = new BigDecimal(this.vr, MathContext.DECIMAL128);
    BigDecimal d = new BigDecimal(this.d, MathContext.DECIMAL128);
    BigDecimal w = new BigDecimal(this.w, MathContext.DECIMAL128);

    return w.multiply(d).divide(vl.add(vr), MathContext.DECIMAL128);
  }

  double souteikai() {
    double vl = (double) this.vl;
    double vr = (double) this.vr;
    double d = (double) this.d;
    double w = (double) this.w;

    return w * d / (vl + vr);
  }

  double gokai() {
    double vl = (double) this.vl;
    double vr = (double) this.vr;
    double d = (double) this.d;
    double w = (double) this.w;

    double ans = 0;

    while (d > 1e-7) {
      double t = d / (w + vr);
      ans += w * t;
      d -= t * (vl + vr);
      double tmp = vr;
      vr = vl;
      vl = tmp;
    }

    return ans;
  }

  void run() {
    vl = sc.nextInt();
    vr = sc.nextInt();
    d = sc.nextInt();
    w = sc.nextInt();

    assert (1 <= vl && vl <= 1_000_000_000L);
    assert (1 <= vr && vr <= 1_000_000_000L);
    assert (1 <= d && d <= 1_000_000_000L);
    assert (1 <= w && w <= 1_000_000_000L);
    assert (Math.max(vl, vr) < w);

    BigDecimal s = checkai();
    double u = souteikai();
    assert (Math.abs(BigDecimal.valueOf(u).subtract(s).doubleValue()) < 1e-6);
    if (max(vl, vr, d, w) <= 1_000_000L) {
      double g = gokai();
      assert (Math.abs(BigDecimal.valueOf(g).subtract(s).doubleValue()) < 1e-6);
    }

    System.out.println(s.toPlainString());
    System.out.flush();
  }

  Scanner sc = new Scanner(System.in);

  public static void main(String[] args) {
    new Main().run();
  }

  long max(long... a) {
    long r = Long.MIN_VALUE;
    for (long v : a) {
      r = Math.max(r, v);
    }
    return r;
  }
}
0