結果

問題 No.410 出会い
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-05 12:35:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 75,856 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-06-28 11:19:46
合計ジャッジ時間 6,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,832 KB
testcase_01 AC 146 ms
41,448 KB
testcase_02 AC 144 ms
41,380 KB
testcase_03 AC 145 ms
41,588 KB
testcase_04 AC 146 ms
41,420 KB
testcase_05 AC 146 ms
41,296 KB
testcase_06 AC 150 ms
41,500 KB
testcase_07 AC 146 ms
41,384 KB
testcase_08 AC 150 ms
41,352 KB
testcase_09 AC 147 ms
41,616 KB
testcase_10 AC 146 ms
41,244 KB
testcase_11 AC 145 ms
41,392 KB
testcase_12 AC 146 ms
41,572 KB
testcase_13 AC 158 ms
41,616 KB
testcase_14 AC 145 ms
41,100 KB
testcase_15 AC 130 ms
41,056 KB
testcase_16 AC 144 ms
41,656 KB
testcase_17 AC 154 ms
41,460 KB
testcase_18 AC 155 ms
41,728 KB
testcase_19 AC 146 ms
41,648 KB
testcase_20 AC 148 ms
41,756 KB
testcase_21 AC 144 ms
41,592 KB
testcase_22 AC 143 ms
41,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

class Question410
{
	public static void main(String[] str){
		
		Scanner scan = new Scanner(System.in);
		
		double px = scan.nextDouble(), py = scan.nextDouble();
		double qx = scan.nextDouble(), qy = scan.nextDouble();
		
		System.out.println((Math.abs(px-qx)+Math.abs(py-qy))/2);
	}
}
0