結果

問題 No.306 さいたま2008
ユーザー tsunabittsunabit
提出日時 2020-03-27 02:13:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-06-10 15:51:40
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,036 KB
testcase_01 AC 99 ms
52,948 KB
testcase_02 AC 109 ms
53,660 KB
testcase_03 AC 113 ms
54,096 KB
testcase_04 AC 102 ms
52,564 KB
testcase_05 AC 103 ms
52,888 KB
testcase_06 AC 98 ms
52,980 KB
testcase_07 AC 101 ms
52,648 KB
testcase_08 AC 103 ms
52,836 KB
testcase_09 AC 111 ms
54,072 KB
testcase_10 AC 113 ms
53,764 KB
testcase_11 AC 112 ms
53,968 KB
testcase_12 AC 121 ms
53,912 KB
testcase_13 AC 114 ms
53,872 KB
testcase_14 AC 115 ms
53,848 KB
testcase_15 AC 111 ms
53,608 KB
testcase_16 AC 103 ms
52,848 KB
testcase_17 AC 103 ms
52,992 KB
testcase_18 AC 116 ms
53,956 KB
testcase_19 AC 117 ms
53,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 105 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No306 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int xa=sc.nextInt(), ya=sc.nextInt(),xb=sc.nextInt(), yb=sc.nextInt();
//		double t = yb, b = ya;
//		double t = ya, b = yb;
		double t, b;
		if(ya > yb) {
			t = ya;
			b = yb;
		}else {
			t = yb;
			b = ya;
		}
		while(t-b > 0.000001) {
			double p0 = (t*2+b)/3;
			double p1 = (t+b*2)/3;
			if(search(xa,ya,xb,yb,p0) < search(xa,ya,xb,yb,p1)) {
				b = p1;
			}else {
				t = p0;
			}
		}
		
		if(search(xa,ya,xb,yb,t) < search(xa,ya,xb,yb,b)) {
			System.out.println(t);
		}else {
			System.out.println(b);
		}
 	}
	public static double search(int xa, int ya, int xb, int yb, double p) {
		double a = Math.sqrt(Math.pow(xa, 2) + Math.pow(ya-p, 2));
		double b = Math.sqrt(Math.pow(xb, 2) + Math.pow(yb-p, 2));
		return a+b;
	}
}
0