結果

問題 No.410 出会い
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:28:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-06-28 11:14:07
合計ジャッジ時間 7,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,384 KB
testcase_01 AC 149 ms
41,476 KB
testcase_02 AC 150 ms
41,660 KB
testcase_03 AC 147 ms
41,516 KB
testcase_04 AC 147 ms
41,584 KB
testcase_05 AC 149 ms
41,616 KB
testcase_06 AC 147 ms
41,696 KB
testcase_07 AC 148 ms
41,380 KB
testcase_08 AC 146 ms
41,532 KB
testcase_09 AC 148 ms
41,308 KB
testcase_10 AC 150 ms
41,552 KB
testcase_11 AC 148 ms
41,472 KB
testcase_12 AC 131 ms
40,800 KB
testcase_13 AC 145 ms
41,696 KB
testcase_14 AC 150 ms
41,972 KB
testcase_15 AC 153 ms
41,716 KB
testcase_16 AC 130 ms
40,864 KB
testcase_17 AC 148 ms
41,352 KB
testcase_18 AC 147 ms
41,452 KB
testcase_19 AC 148 ms
41,696 KB
testcase_20 AC 147 ms
41,780 KB
testcase_21 AC 152 ms
41,256 KB
testcase_22 AC 131 ms
40,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		double px, py, qx, qy, ans;
		px = sc.nextDouble();
		py = sc.nextDouble();
		qx = sc.nextDouble();
		qy = sc.nextDouble();
		ans = Math.abs((px - qx) / 2) + Math.abs((py - qy) / 2);
		System.out.println(ans);
	}
}
0