結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,048 KB
testcase_01 AC 59 ms
67,968 KB
testcase_02 AC 68 ms
67,328 KB
testcase_03 AC 233 ms
69,120 KB
testcase_04 AC 317 ms
68,736 KB
testcase_05 AC 272 ms
68,608 KB
testcase_06 AC 173 ms
67,968 KB
testcase_07 AC 313 ms
68,864 KB
testcase_08 AC 151 ms
68,736 KB
testcase_09 AC 80 ms
67,584 KB
testcase_10 AC 156 ms
68,096 KB
testcase_11 AC 314 ms
68,864 KB
testcase_12 AC 103 ms
67,840 KB
testcase_13 AC 78 ms
67,840 KB
testcase_14 AC 328 ms
69,632 KB
testcase_15 AC 245 ms
68,224 KB
testcase_16 AC 205 ms
68,992 KB
testcase_17 AC 142 ms
69,376 KB
testcase_18 AC 320 ms
68,864 KB
testcase_19 AC 251 ms
68,864 KB
testcase_20 AC 128 ms
67,968 KB
testcase_21 AC 291 ms
67,968 KB
testcase_22 AC 115 ms
67,968 KB
testcase_23 AC 54 ms
63,744 KB
testcase_24 AC 354 ms
68,992 KB
testcase_25 AC 57 ms
68,352 KB
testcase_26 AC 330 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
xs, ys = [], []
for i in range(N):
    x, y = map(int, input().split())
    xs.append(x)
    ys.append(y)

ans = 10 ** 18
for x in range(310):
    for y in range(310):
        s = 0
        for i in range(N):
            s += abs(xs[i] - x) + abs(ys[i] - y)
        ans = min(ans, s)
    
print(ans)
0