結果

問題 No.306 さいたま2008
ユーザー tsunabittsunabit
提出日時 2020-03-27 02:13:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 79,604 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2025-01-02 07:49:22
合計ジャッジ時間 6,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,180 KB
testcase_01 AC 110 ms
54,368 KB
testcase_02 AC 115 ms
54,148 KB
testcase_03 AC 107 ms
54,272 KB
testcase_04 AC 115 ms
54,264 KB
testcase_05 AC 112 ms
54,084 KB
testcase_06 AC 110 ms
54,316 KB
testcase_07 AC 107 ms
54,148 KB
testcase_08 AC 115 ms
54,152 KB
testcase_09 AC 115 ms
54,372 KB
testcase_10 AC 111 ms
54,356 KB
testcase_11 AC 114 ms
54,184 KB
testcase_12 AC 114 ms
54,348 KB
testcase_13 AC 114 ms
54,272 KB
testcase_14 AC 118 ms
54,016 KB
testcase_15 AC 119 ms
54,336 KB
testcase_16 AC 113 ms
54,036 KB
testcase_17 AC 113 ms
54,440 KB
testcase_18 AC 112 ms
54,400 KB
testcase_19 AC 109 ms
54,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 111 ms
54,376 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