結果

問題 No.410 出会い
ユーザー YOSHIYOSHI
提出日時 2021-03-16 21:54:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 3,782 ms
コンパイル使用メモリ 73,204 KB
実行使用メモリ 37,140 KB
最終ジャッジ日時 2024-11-08 16:47:52
合計ジャッジ時間 5,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,052 KB
testcase_01 AC 48 ms
36,928 KB
testcase_02 AC 47 ms
36,864 KB
testcase_03 AC 47 ms
36,584 KB
testcase_04 AC 48 ms
36,808 KB
testcase_05 AC 48 ms
36,916 KB
testcase_06 AC 48 ms
36,784 KB
testcase_07 AC 47 ms
37,020 KB
testcase_08 AC 46 ms
36,920 KB
testcase_09 AC 46 ms
37,120 KB
testcase_10 AC 47 ms
36,832 KB
testcase_11 AC 47 ms
36,984 KB
testcase_12 AC 46 ms
37,048 KB
testcase_13 AC 46 ms
37,140 KB
testcase_14 AC 48 ms
37,044 KB
testcase_15 AC 48 ms
36,712 KB
testcase_16 AC 48 ms
36,800 KB
testcase_17 AC 48 ms
36,460 KB
testcase_18 AC 50 ms
36,956 KB
testcase_19 AC 47 ms
36,828 KB
testcase_20 AC 48 ms
37,052 KB
testcase_21 AC 47 ms
37,048 KB
testcase_22 AC 46 ms
36,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

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