結果

問題 No.306 さいたま2008
ユーザー tentententen
提出日時 2022-07-30 09:53:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,586 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 77,592 KB
実行使用メモリ 51,268 KB
最終ジャッジ日時 2024-07-20 05:29:40
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
37,864 KB
testcase_01 AC 90 ms
37,900 KB
testcase_02 AC 90 ms
38,036 KB
testcase_03 AC 89 ms
37,900 KB
testcase_04 AC 90 ms
37,832 KB
testcase_05 AC 90 ms
38,040 KB
testcase_06 AC 91 ms
37,996 KB
testcase_07 AC 91 ms
37,800 KB
testcase_08 AC 88 ms
38,004 KB
testcase_09 AC 90 ms
38,060 KB
testcase_10 AC 89 ms
37,796 KB
testcase_11 AC 89 ms
37,888 KB
testcase_12 AC 89 ms
37,900 KB
testcase_13 AC 89 ms
38,016 KB
testcase_14 AC 90 ms
37,884 KB
testcase_15 AC 89 ms
37,976 KB
testcase_16 AC 90 ms
37,980 KB
testcase_17 AC 89 ms
38,000 KB
testcase_18 AC 89 ms
37,652 KB
testcase_19 AC 90 ms
38,040 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 90 ms
37,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int xa = sc.nextInt();
        int ya = sc.nextInt();
        int xb = sc.nextInt();
        int yb = sc.nextInt();
        double left = 0;
        double right = 1000;
        for (int i = 0; i < 1000000; i++) {
            double m1 = (left * 2 + right) / 3;
            double m2 = (left + right * 2) / 3;
            double d1 = Math.sqrt(Math.pow(xa, 2) + Math.pow(ya - m1, 2)) + Math.sqrt(Math.pow(xb, 2) + Math.pow(yb - m1, 2));
            double d2 = Math.sqrt(Math.pow(xa, 2) + Math.pow(ya - m2, 2)) + Math.sqrt(Math.pow(xb, 2) + Math.pow(yb - m2, 2));
            if (d1 < d2) {
                right = m2;
            } else {
                left = m1;
            }
        }
        System.out.println(left);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0