結果

問題 No.306 さいたま2008
ユーザー tentententen
提出日時 2022-10-13 09:51:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,607 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 51,632 KB
最終ジャッジ日時 2023-09-08 18:58:34
合計ジャッジ時間 8,127 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
51,156 KB
testcase_01 AC 202 ms
51,156 KB
testcase_02 AC 207 ms
51,340 KB
testcase_03 AC 202 ms
51,236 KB
testcase_04 AC 202 ms
51,412 KB
testcase_05 AC 203 ms
51,428 KB
testcase_06 AC 210 ms
51,332 KB
testcase_07 AC 201 ms
51,456 KB
testcase_08 AC 209 ms
51,236 KB
testcase_09 AC 201 ms
51,492 KB
testcase_10 AC 202 ms
51,240 KB
testcase_11 AC 201 ms
51,632 KB
testcase_12 AC 211 ms
51,188 KB
testcase_13 AC 209 ms
51,236 KB
testcase_14 AC 208 ms
51,384 KB
testcase_15 AC 201 ms
51,220 KB
testcase_16 AC 202 ms
51,256 KB
testcase_17 AC 208 ms
51,328 KB
testcase_18 AC 209 ms
51,160 KB
testcase_19 AC 202 ms
51,212 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 201 ms
51,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int x1 = sc.nextInt();
        int y1 = sc.nextInt();
        int x2 = sc.nextInt();
        int y2 = sc.nextInt();
        double left = Math.min(y1, y2);
        double right = Math.max(y1, y2);
        for (int i = 0; i < 10000000; i++) {
            double m1 = (left * 2 + right) / 3;
            double m2 = (left + right * 2) / 3;
            if (Math.sqrt(Math.pow(x1, 2) + Math.pow(y1 - m1, 2)) + Math.sqrt(Math.pow(x2, 2) + Math.pow(y2 - m1, 2)) < Math.sqrt(Math.pow(x1, 2) + Math.pow(y1 - m2, 2)) + Math.sqrt(Math.pow(x2, 2) + Math.pow(y2 - m2, 2))) {
                right = m2;
            } else {
                left = m1;
            }
        }
        System.out.println(left);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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