結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー ks2mks2m
提出日時 2020-05-29 21:40:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 77,268 KB
実行使用メモリ 57,040 KB
最終ジャッジ日時 2024-11-06 02:58:05
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,224 KB
testcase_01 AC 137 ms
54,376 KB
testcase_02 AC 133 ms
54,176 KB
testcase_03 AC 170 ms
54,896 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 172 ms
55,120 KB
testcase_15 AC 169 ms
54,944 KB
testcase_16 AC 171 ms
55,004 KB
testcase_17 AC 170 ms
55,060 KB
testcase_18 AC 163 ms
55,092 KB
testcase_19 AC 166 ms
55,108 KB
testcase_20 AC 169 ms
55,168 KB
testcase_21 AC 168 ms
55,040 KB
testcase_22 AC 174 ms
54,932 KB
testcase_23 AC 171 ms
55,140 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 155 ms
54,088 KB
testcase_37 WA -
testcase_38 AC 169 ms
55,028 KB
testcase_39 AC 168 ms
54,740 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();

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