結果

問題 No.2315 Flying Camera
ユーザー ニックネームニックネーム
提出日時 2023-05-26 21:23:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-06-07 05:12:44
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,896 KB
testcase_01 AC 61 ms
66,048 KB
testcase_02 AC 63 ms
66,560 KB
testcase_03 AC 270 ms
67,968 KB
testcase_04 AC 385 ms
69,504 KB
testcase_05 AC 327 ms
67,968 KB
testcase_06 AC 202 ms
68,352 KB
testcase_07 AC 378 ms
68,224 KB
testcase_08 AC 164 ms
69,120 KB
testcase_09 AC 80 ms
67,200 KB
testcase_10 AC 170 ms
67,584 KB
testcase_11 AC 386 ms
69,120 KB
testcase_12 AC 109 ms
66,944 KB
testcase_13 AC 79 ms
67,328 KB
testcase_14 AC 395 ms
68,224 KB
testcase_15 AC 289 ms
67,840 KB
testcase_16 AC 237 ms
68,224 KB
testcase_17 AC 151 ms
68,992 KB
testcase_18 AC 393 ms
67,968 KB
testcase_19 AC 292 ms
67,584 KB
testcase_20 AC 131 ms
67,328 KB
testcase_21 AC 202 ms
67,584 KB
testcase_22 AC 118 ms
67,456 KB
testcase_23 AC 53 ms
63,360 KB
testcase_24 AC 431 ms
69,248 KB
testcase_25 AC 53 ms
64,000 KB
testcase_26 AC 394 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [tuple(map(int,input().split())) for _ in range(n)]
ans = 600*n
for i in range(1,301):
    for j in range(1,301):
        d = 0
        for x,y in xy: d += abs(i-x)+abs(j-y)
        ans = min(ans,d)
print(ans)
0