結果

問題 No.306 さいたま2008
ユーザー tenten
提出日時 2022-10-13 09:51:43
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 WA * 2
権限があれば一括ダウンロードができます

ソースコード

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