結果

問題 No.410 出会い
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 18:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-13 11:09:11
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,048 KB
testcase_01 AC 136 ms
54,012 KB
testcase_02 AC 136 ms
54,104 KB
testcase_03 AC 137 ms
53,888 KB
testcase_04 AC 137 ms
53,880 KB
testcase_05 AC 134 ms
54,064 KB
testcase_06 AC 138 ms
54,176 KB
testcase_07 AC 134 ms
53,904 KB
testcase_08 AC 137 ms
53,876 KB
testcase_09 AC 134 ms
53,820 KB
testcase_10 AC 134 ms
54,300 KB
testcase_11 AC 134 ms
54,240 KB
testcase_12 AC 133 ms
54,016 KB
testcase_13 AC 133 ms
54,020 KB
testcase_14 AC 134 ms
54,004 KB
testcase_15 AC 133 ms
53,700 KB
testcase_16 AC 135 ms
54,108 KB
testcase_17 AC 132 ms
53,872 KB
testcase_18 AC 134 ms
53,640 KB
testcase_19 AC 134 ms
54,004 KB
testcase_20 AC 137 ms
53,936 KB
testcase_21 AC 136 ms
54,344 KB
testcase_22 AC 134 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		System.out.println((double)calcManhatDistance(sc.nextInt(),sc.nextInt(),sc.nextInt(),sc.nextInt())/2);
		
	}
	
	static int calcManhatDistance (int x1, int y1, int x2, int y2) {
		int d = Math.abs(x1-x2)+Math.abs(y1-y2);
		return d;
	}
	static double calcEuclidDistance (double x1, double y1, double x2, double y2) {
		double d = Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
		return d;
	}
	
}
0