結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,664 KB
testcase_01 AC 58 ms
66,048 KB
testcase_02 AC 63 ms
66,560 KB
testcase_03 AC 234 ms
68,352 KB
testcase_04 AC 297 ms
69,504 KB
testcase_05 AC 257 ms
67,840 KB
testcase_06 AC 166 ms
68,480 KB
testcase_07 AC 298 ms
67,840 KB
testcase_08 AC 144 ms
68,480 KB
testcase_09 AC 81 ms
67,712 KB
testcase_10 AC 150 ms
67,328 KB
testcase_11 AC 324 ms
68,480 KB
testcase_12 AC 103 ms
66,816 KB
testcase_13 AC 77 ms
67,200 KB
testcase_14 AC 337 ms
68,736 KB
testcase_15 AC 233 ms
68,352 KB
testcase_16 AC 195 ms
68,352 KB
testcase_17 AC 140 ms
69,376 KB
testcase_18 AC 318 ms
68,096 KB
testcase_19 AC 237 ms
67,712 KB
testcase_20 AC 125 ms
67,328 KB
testcase_21 AC 181 ms
67,840 KB
testcase_22 AC 109 ms
67,840 KB
testcase_23 AC 52 ms
63,232 KB
testcase_24 AC 347 ms
68,864 KB
testcase_25 AC 52 ms
64,640 KB
testcase_26 AC 345 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[]
for i in range(N):
  x,y=map(int, input().split())
  A.append((x,y))
  
ans=10**20
for h in range(1,301):
  for w in range(1,301):
    d=0
    for x,y in A:
      d+=abs(h-x)+abs(w-y)
    ans=min(ans,d)
print(ans)
0