結果

問題 No.2315 Flying Camera
ユーザー ks2mks2m
提出日時 2023-05-26 21:23:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,701 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 42,456 KB
最終ジャッジ日時 2024-06-07 05:10:37
合計ジャッジ時間 9,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
40,792 KB
testcase_01 AC 150 ms
41,552 KB
testcase_02 AC 160 ms
41,444 KB
testcase_03 AC 205 ms
41,492 KB
testcase_04 AC 273 ms
42,384 KB
testcase_05 AC 246 ms
41,964 KB
testcase_06 AC 191 ms
41,556 KB
testcase_07 AC 260 ms
41,892 KB
testcase_08 AC 178 ms
41,364 KB
testcase_09 AC 155 ms
41,536 KB
testcase_10 AC 182 ms
41,548 KB
testcase_11 AC 260 ms
42,140 KB
testcase_12 AC 162 ms
41,276 KB
testcase_13 AC 156 ms
41,472 KB
testcase_14 AC 263 ms
42,404 KB
testcase_15 AC 231 ms
42,064 KB
testcase_16 AC 200 ms
41,280 KB
testcase_17 AC 178 ms
41,336 KB
testcase_18 AC 275 ms
42,408 KB
testcase_19 AC 218 ms
41,936 KB
testcase_20 AC 173 ms
41,364 KB
testcase_21 AC 191 ms
41,404 KB
testcase_22 AC 169 ms
41,432 KB
testcase_23 AC 144 ms
41,272 KB
testcase_24 AC 262 ms
42,160 KB
testcase_25 AC 149 ms
41,180 KB
testcase_26 AC 260 ms
42,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] x = new int[n];
		int[] y = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		sc.close();

		int ans = Integer.MAX_VALUE;
		for (int i = 0; i <= 300; i++) {
			for (int j = 0; j <= 300; j++) {
				int val = 0;
				for (int k = 0; k < n; k++) {
					val += Math.abs(i - x[k]);
					val += Math.abs(j - y[k]);
				}
				ans = Math.min(ans, val);
			}
		}
		System.out.println(ans);
	}
}
0