結果

問題 No.410 出会い
ユーザー FVRChanFVRChan
提出日時 2017-10-05 10:23:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-06-28 11:25:50
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,384 KB
testcase_01 AC 133 ms
41,508 KB
testcase_02 AC 116 ms
39,956 KB
testcase_03 AC 130 ms
41,236 KB
testcase_04 AC 130 ms
41,512 KB
testcase_05 AC 117 ms
40,092 KB
testcase_06 AC 127 ms
41,544 KB
testcase_07 AC 135 ms
41,340 KB
testcase_08 AC 131 ms
41,736 KB
testcase_09 AC 131 ms
41,724 KB
testcase_10 AC 131 ms
41,496 KB
testcase_11 AC 135 ms
41,744 KB
testcase_12 AC 119 ms
40,204 KB
testcase_13 AC 129 ms
41,868 KB
testcase_14 AC 132 ms
41,360 KB
testcase_15 AC 130 ms
41,700 KB
testcase_16 AC 133 ms
41,368 KB
testcase_17 AC 131 ms
41,480 KB
testcase_18 AC 120 ms
40,472 KB
testcase_19 AC 132 ms
41,244 KB
testcase_20 AC 135 ms
41,288 KB
testcase_21 AC 129 ms
41,364 KB
testcase_22 AC 132 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int x1=sc.nextInt(),y1=sc.nextInt(),x2=sc.nextInt(),y2=sc.nextInt();
		int distance=Math.abs(x2-x1)+Math.abs(y2-y1);
		System.out.println(distance*1.0/2);
	}
}
0