結果

問題 No.410 出会い
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 20:31:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-06-30 18:05:16
合計ジャッジ時間 6,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,088 KB
testcase_01 AC 142 ms
54,120 KB
testcase_02 AC 142 ms
54,120 KB
testcase_03 AC 144 ms
54,288 KB
testcase_04 AC 142 ms
54,012 KB
testcase_05 AC 142 ms
54,268 KB
testcase_06 AC 145 ms
54,184 KB
testcase_07 AC 144 ms
54,104 KB
testcase_08 AC 147 ms
54,328 KB
testcase_09 AC 147 ms
53,960 KB
testcase_10 AC 142 ms
54,072 KB
testcase_11 AC 144 ms
54,120 KB
testcase_12 AC 140 ms
54,396 KB
testcase_13 AC 146 ms
54,264 KB
testcase_14 AC 147 ms
54,344 KB
testcase_15 AC 146 ms
54,208 KB
testcase_16 AC 149 ms
54,192 KB
testcase_17 AC 146 ms
54,176 KB
testcase_18 AC 153 ms
54,284 KB
testcase_19 AC 153 ms
54,668 KB
testcase_20 AC 152 ms
54,212 KB
testcase_21 AC 151 ms
54,360 KB
testcase_22 AC 148 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no410{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		double a,b,c,d,t;
		a=stdIn.nextDouble();
		b=stdIn.nextDouble();
		c=stdIn.nextDouble();
		d=stdIn.nextDouble();
		if(c-a<0) a-=c;
		else a=c-a;
		if(d-b<0) b-=d;
		else b=d-b;
		System.out.print((a+b)/2.);
	}
}
0