結果

問題 No.410 出会い
ユーザー jimanojimano
提出日時 2018-01-21 12:30:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 75,312 KB
実行使用メモリ 36,996 KB
最終ジャッジ日時 2024-06-28 11:28:17
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,964 KB
testcase_01 AC 55 ms
36,376 KB
testcase_02 AC 54 ms
36,856 KB
testcase_03 AC 54 ms
36,924 KB
testcase_04 AC 55 ms
36,728 KB
testcase_05 AC 54 ms
36,924 KB
testcase_06 AC 53 ms
36,536 KB
testcase_07 AC 55 ms
36,944 KB
testcase_08 AC 54 ms
36,892 KB
testcase_09 AC 54 ms
36,668 KB
testcase_10 AC 55 ms
36,708 KB
testcase_11 AC 54 ms
36,372 KB
testcase_12 AC 55 ms
36,396 KB
testcase_13 AC 55 ms
36,956 KB
testcase_14 AC 55 ms
36,664 KB
testcase_15 AC 53 ms
36,812 KB
testcase_16 AC 54 ms
36,948 KB
testcase_17 AC 53 ms
36,996 KB
testcase_18 AC 54 ms
36,708 KB
testcase_19 AC 56 ms
36,800 KB
testcase_20 AC 53 ms
36,660 KB
testcase_21 AC 54 ms
36,956 KB
testcase_22 AC 56 ms
36,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0410 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str1 = br.readLine().split(" ");
			String[] str2 = br.readLine().split(" ");
			int[] p = { Integer.parseInt(str1[0]), Integer.parseInt(str1[1]) };
			int[] q = { Integer.parseInt(str2[0]), Integer.parseInt(str2[1]) };

			double dist = (Math.abs(p[0] - q[0]) + Math.abs(p[1] - q[1])) / 2.0;
			System.out.println(dist);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0