結果

問題 No.2315 Flying Camera
ユーザー miho-4miho-4
提出日時 2023-05-26 21:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-06-07 05:15:33
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
65,664 KB
testcase_01 AC 63 ms
65,664 KB
testcase_02 AC 69 ms
66,688 KB
testcase_03 AC 272 ms
67,840 KB
testcase_04 AC 376 ms
68,096 KB
testcase_05 AC 315 ms
68,224 KB
testcase_06 AC 200 ms
67,712 KB
testcase_07 AC 374 ms
68,352 KB
testcase_08 AC 158 ms
67,712 KB
testcase_09 AC 86 ms
66,944 KB
testcase_10 AC 166 ms
67,328 KB
testcase_11 AC 384 ms
68,224 KB
testcase_12 AC 112 ms
67,328 KB
testcase_13 AC 85 ms
66,944 KB
testcase_14 AC 396 ms
68,736 KB
testcase_15 AC 283 ms
68,352 KB
testcase_16 AC 230 ms
67,840 KB
testcase_17 AC 151 ms
67,968 KB
testcase_18 AC 389 ms
68,352 KB
testcase_19 AC 297 ms
67,968 KB
testcase_20 AC 136 ms
67,840 KB
testcase_21 AC 201 ms
67,456 KB
testcase_22 AC 127 ms
67,072 KB
testcase_23 AC 61 ms
63,744 KB
testcase_24 AC 444 ms
68,224 KB
testcase_25 AC 65 ms
65,920 KB
testcase_26 AC 403 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=[list(map(int,input().split())) for _ in range(n)]
ans=10**9
for i in range(1,301):
  for j in range(1,301):
    tmp=0
    for x,y in L:
      tmp+=abs(x-i)+abs(y-j)
    ans=min(ans,tmp)
print(ans)
0