結果

問題 No.306 さいたま2008
ユーザー tentententen
提出日時 2022-10-13 09:51:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,607 bytes
コンパイル時間 2,740 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 51,460 KB
最終ジャッジ日時 2024-06-26 11:53:26
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
37,988 KB
testcase_01 AC 212 ms
37,856 KB
testcase_02 AC 210 ms
37,824 KB
testcase_03 AC 209 ms
37,856 KB
testcase_04 AC 215 ms
38,024 KB
testcase_05 AC 209 ms
37,760 KB
testcase_06 AC 209 ms
37,760 KB
testcase_07 AC 206 ms
38,108 KB
testcase_08 AC 209 ms
38,012 KB
testcase_09 AC 210 ms
37,988 KB
testcase_10 AC 213 ms
37,972 KB
testcase_11 AC 212 ms
37,984 KB
testcase_12 AC 211 ms
37,996 KB
testcase_13 AC 212 ms
37,988 KB
testcase_14 AC 212 ms
37,820 KB
testcase_15 AC 210 ms
38,024 KB
testcase_16 AC 209 ms
37,724 KB
testcase_17 AC 209 ms
38,020 KB
testcase_18 AC 213 ms
37,820 KB
testcase_19 AC 210 ms
37,784 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 208 ms
38,016 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