結果

問題 No.2315 Flying Camera
ユーザー miya145592miya145592
提出日時 2023-05-26 21:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 70,292 KB
最終ジャッジ日時 2024-06-07 06:23:43
合計ジャッジ時間 6,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,984 KB
testcase_01 AC 62 ms
67,708 KB
testcase_02 AC 63 ms
67,872 KB
testcase_03 AC 287 ms
68,512 KB
testcase_04 AC 361 ms
68,936 KB
testcase_05 AC 327 ms
69,432 KB
testcase_06 AC 187 ms
68,656 KB
testcase_07 AC 385 ms
68,916 KB
testcase_08 AC 156 ms
69,020 KB
testcase_09 AC 80 ms
67,264 KB
testcase_10 AC 160 ms
68,108 KB
testcase_11 AC 374 ms
69,732 KB
testcase_12 AC 107 ms
69,172 KB
testcase_13 AC 80 ms
68,204 KB
testcase_14 AC 376 ms
69,528 KB
testcase_15 AC 281 ms
69,372 KB
testcase_16 AC 217 ms
69,400 KB
testcase_17 AC 150 ms
69,380 KB
testcase_18 AC 369 ms
70,012 KB
testcase_19 AC 302 ms
68,932 KB
testcase_20 AC 130 ms
68,832 KB
testcase_21 AC 194 ms
68,560 KB
testcase_22 AC 116 ms
68,772 KB
testcase_23 AC 56 ms
64,180 KB
testcase_24 AC 436 ms
69,608 KB
testcase_25 AC 53 ms
64,384 KB
testcase_26 AC 412 ms
70,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [list(map(int, input().split())) for _ in range(N)]
INF = 10**9
ans = INF
for i in range(1, 301):
    for j in range(1, 301):
        S = 0
        for sx, sy in XY:
            S += abs(i-sx) +abs(j-sy)
        ans = min(ans, S)
print(ans)
0