結果

問題 No.2315 Flying Camera
ユーザー ryohei22ryohei22
提出日時 2023-06-02 12:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-06-08 21:54:11
合計ジャッジ時間 7,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
64,768 KB
testcase_01 AC 69 ms
65,664 KB
testcase_02 AC 73 ms
66,176 KB
testcase_03 AC 299 ms
67,584 KB
testcase_04 AC 398 ms
68,736 KB
testcase_05 AC 340 ms
67,584 KB
testcase_06 AC 211 ms
67,456 KB
testcase_07 AC 406 ms
67,840 KB
testcase_08 AC 176 ms
68,224 KB
testcase_09 AC 91 ms
66,944 KB
testcase_10 AC 179 ms
67,328 KB
testcase_11 AC 409 ms
68,096 KB
testcase_12 AC 119 ms
66,944 KB
testcase_13 AC 90 ms
66,816 KB
testcase_14 AC 423 ms
68,224 KB
testcase_15 AC 306 ms
67,584 KB
testcase_16 AC 256 ms
67,712 KB
testcase_17 AC 166 ms
68,992 KB
testcase_18 AC 413 ms
67,968 KB
testcase_19 AC 334 ms
67,840 KB
testcase_20 AC 141 ms
66,816 KB
testcase_21 AC 224 ms
67,584 KB
testcase_22 AC 125 ms
67,200 KB
testcase_23 AC 61 ms
63,104 KB
testcase_24 AC 461 ms
69,632 KB
testcase_25 AC 62 ms
63,872 KB
testcase_26 AC 436 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [tuple(map(int, input().split())) for _ in range(N)]

ans = float('inf')
for x in range(1, 301):
	for y in range(1, 301):
		s = 0
		for X, Y in XY:
			s += abs(x - X) + abs(y - Y)
		ans = min(ans, s)
print(ans)
0