結果

問題 No.410 出会い
ユーザー YOSHIYOSHI
提出日時 2021-03-16 21:50:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 6,642 ms
コンパイル使用メモリ 79,496 KB
実行使用メモリ 37,964 KB
最終ジャッジ日時 2024-11-08 16:43:12
合計ジャッジ時間 7,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
37,908 KB
testcase_01 AC 70 ms
37,704 KB
testcase_02 AC 63 ms
37,964 KB
testcase_03 AC 62 ms
37,828 KB
testcase_04 AC 62 ms
37,844 KB
testcase_05 AC 63 ms
37,608 KB
testcase_06 AC 66 ms
37,616 KB
testcase_07 AC 64 ms
37,740 KB
testcase_08 AC 62 ms
37,564 KB
testcase_09 AC 60 ms
37,300 KB
testcase_10 AC 63 ms
37,708 KB
testcase_11 AC 63 ms
37,836 KB
testcase_12 AC 63 ms
37,672 KB
testcase_13 AC 61 ms
37,784 KB
testcase_14 AC 61 ms
37,704 KB
testcase_15 AC 60 ms
37,860 KB
testcase_16 AC 61 ms
37,320 KB
testcase_17 AC 61 ms
37,336 KB
testcase_18 AC 61 ms
37,744 KB
testcase_19 AC 61 ms
37,660 KB
testcase_20 AC 63 ms
37,204 KB
testcase_21 AC 62 ms
37,708 KB
testcase_22 AC 62 ms
37,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class No00000410_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int[] p = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int[] q = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		System.out.println((Math.abs(p[0] - q[0]) + Math.abs(p[1] - q[1])) / 2.0);
	}
}
0