結果

問題 No.2315 Flying Camera
ユーザー sepa38sepa38
提出日時 2023-05-26 21:21:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-06-07 05:07:04
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,280 KB
testcase_01 AC 61 ms
66,432 KB
testcase_02 AC 64 ms
66,560 KB
testcase_03 AC 254 ms
67,584 KB
testcase_04 AC 369 ms
68,992 KB
testcase_05 AC 302 ms
67,968 KB
testcase_06 AC 187 ms
68,352 KB
testcase_07 AC 355 ms
68,224 KB
testcase_08 AC 155 ms
68,608 KB
testcase_09 AC 83 ms
67,072 KB
testcase_10 AC 160 ms
67,456 KB
testcase_11 AC 357 ms
68,732 KB
testcase_12 AC 106 ms
67,200 KB
testcase_13 AC 81 ms
67,412 KB
testcase_14 AC 372 ms
68,352 KB
testcase_15 AC 270 ms
67,840 KB
testcase_16 AC 217 ms
68,416 KB
testcase_17 AC 149 ms
68,864 KB
testcase_18 AC 366 ms
68,224 KB
testcase_19 AC 280 ms
68,224 KB
testcase_20 AC 130 ms
67,200 KB
testcase_21 AC 192 ms
67,584 KB
testcase_22 AC 116 ms
67,200 KB
testcase_23 AC 54 ms
63,488 KB
testcase_24 AC 412 ms
69,168 KB
testcase_25 AC 53 ms
64,640 KB
testcase_26 AC 383 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = [list(map(int, input().split())) for _ in range(n)]
ans = 1 << 30
for x in range(1, 301):
  for y in range(1, 301):
    res = 0
    for xi, yi in ls:
      res += abs(x - xi) + abs(y - yi)
    ans = min(ans, res)
print(ans)
0