結果

問題 No.2315 Flying Camera
ユーザー n_nan_na
提出日時 2023-05-27 17:05:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 68,608 KB
最終ジャッジ日時 2024-06-07 17:47:18
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,280 KB
testcase_01 AC 59 ms
65,280 KB
testcase_02 AC 66 ms
66,432 KB
testcase_03 AC 235 ms
67,200 KB
testcase_04 AC 315 ms
68,608 KB
testcase_05 AC 272 ms
68,096 KB
testcase_06 AC 176 ms
67,712 KB
testcase_07 AC 318 ms
68,352 KB
testcase_08 AC 153 ms
67,968 KB
testcase_09 AC 81 ms
66,944 KB
testcase_10 AC 156 ms
67,200 KB
testcase_11 AC 335 ms
68,480 KB
testcase_12 AC 104 ms
66,688 KB
testcase_13 AC 80 ms
67,584 KB
testcase_14 AC 337 ms
67,968 KB
testcase_15 AC 246 ms
67,584 KB
testcase_16 AC 206 ms
67,456 KB
testcase_17 AC 145 ms
67,584 KB
testcase_18 AC 334 ms
67,968 KB
testcase_19 AC 250 ms
67,712 KB
testcase_20 AC 127 ms
67,072 KB
testcase_21 AC 183 ms
67,456 KB
testcase_22 AC 117 ms
66,944 KB
testcase_23 AC 54 ms
63,360 KB
testcase_24 AC 364 ms
68,608 KB
testcase_25 AC 58 ms
65,280 KB
testcase_26 AC 323 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float("inf")

N = int(input())

A = []
for _ in range(N):
    x,y = map(int,input().split())
    A.append((x,y))
    
ans = INF
for cx in range(1,301):
    for cy in range(1,301):
        tmp = 0
        for nx,ny in A:
            tmp += abs(nx-cx) + abs(ny-cy)
        ans = min(ans, tmp)
        
print(ans)
0