結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー ks2mks2m
提出日時 2020-05-29 21:47:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 76,548 KB
実行使用メモリ 55,912 KB
最終ジャッジ日時 2024-11-06 03:33:43
合計ジャッジ時間 9,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,808 KB
testcase_01 AC 129 ms
54,048 KB
testcase_02 AC 130 ms
54,080 KB
testcase_03 AC 162 ms
55,064 KB
testcase_04 AC 134 ms
54,392 KB
testcase_05 AC 133 ms
54,332 KB
testcase_06 AC 129 ms
54,172 KB
testcase_07 AC 115 ms
53,024 KB
testcase_08 AC 130 ms
54,140 KB
testcase_09 AC 121 ms
53,092 KB
testcase_10 AC 129 ms
54,108 KB
testcase_11 AC 131 ms
54,120 KB
testcase_12 AC 133 ms
54,120 KB
testcase_13 AC 128 ms
54,248 KB
testcase_14 AC 161 ms
55,176 KB
testcase_15 AC 158 ms
55,176 KB
testcase_16 WA -
testcase_17 AC 166 ms
54,928 KB
testcase_18 AC 159 ms
55,092 KB
testcase_19 AC 160 ms
55,008 KB
testcase_20 AC 152 ms
54,764 KB
testcase_21 AC 165 ms
55,040 KB
testcase_22 AC 160 ms
55,004 KB
testcase_23 AC 161 ms
54,864 KB
testcase_24 AC 132 ms
54,432 KB
testcase_25 AC 130 ms
53,996 KB
testcase_26 AC 130 ms
54,036 KB
testcase_27 AC 132 ms
54,244 KB
testcase_28 AC 133 ms
54,232 KB
testcase_29 AC 128 ms
54,160 KB
testcase_30 AC 130 ms
54,212 KB
testcase_31 AC 132 ms
54,196 KB
testcase_32 AC 116 ms
53,092 KB
testcase_33 AC 128 ms
54,100 KB
testcase_34 AC 128 ms
54,156 KB
testcase_35 AC 146 ms
54,792 KB
testcase_36 AC 163 ms
55,048 KB
testcase_37 AC 130 ms
54,140 KB
testcase_38 AC 158 ms
54,996 KB
testcase_39 AC 159 ms
55,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		int d = sc.nextInt();
		sc.close();

		long h = (a - c) * (a - c) - 8 * (b - d);
		if (h == 0) {
			System.out.println("Yes");
		} else if (h < 0) {
			System.out.println("No");
		} else {
			System.out.println((a + c) / 2.0 + " " + (b + d) / 2.0);
		}
	}
}
0