結果

問題 No.2315 Flying Camera
ユーザー GrayCoderGrayCoder
提出日時 2023-05-26 22:04:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,652 KB
最終ジャッジ日時 2024-06-07 06:56:22
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 45 ms
60,288 KB
testcase_03 AC 292 ms
66,944 KB
testcase_04 AC 399 ms
66,816 KB
testcase_05 AC 352 ms
67,072 KB
testcase_06 AC 202 ms
66,176 KB
testcase_07 AC 398 ms
66,304 KB
testcase_08 AC 164 ms
66,560 KB
testcase_09 AC 77 ms
65,664 KB
testcase_10 AC 170 ms
66,048 KB
testcase_11 AC 406 ms
66,560 KB
testcase_12 AC 101 ms
66,048 KB
testcase_13 AC 72 ms
65,024 KB
testcase_14 AC 429 ms
66,688 KB
testcase_15 AC 303 ms
66,816 KB
testcase_16 AC 252 ms
66,304 KB
testcase_17 AC 156 ms
66,816 KB
testcase_18 AC 413 ms
66,560 KB
testcase_19 AC 315 ms
67,072 KB
testcase_20 AC 133 ms
66,560 KB
testcase_21 AC 310 ms
75,652 KB
testcase_22 AC 122 ms
66,304 KB
testcase_23 AC 37 ms
51,712 KB
testcase_24 AC 467 ms
67,584 KB
testcase_25 AC 56 ms
66,944 KB
testcase_26 AC 429 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def main():
    sys.setrecursionlimit(1000000)
    input = lambda: sys.stdin.readline()[:-1]
    N = int(input())
    XY = [tuple(map(int, input().split())) for _ in [0] * N]

    x1, x2, y1, y2 = 300, 0, 300, 0
    for x, y in XY:
        x1, x2 = min(x1, x), max(x2, x)
        y1, y2 = min(y1, y), max(y2, y)

    ans = float("inf")
    for x in range(x1, x2 + 1):
        for y in range(y1, y2 + 1):
            d = 0
            for xi, yi in XY:
                d += abs(xi - x) + abs(yi - y)
            ans = min(ans, d)
    print(ans)


if not __debug__:
    f = open(sys.argv[1], "r")
    sys.stdin = f

main()
0