結果

問題 No.2315 Flying Camera
ユーザー june19312june19312
提出日時 2023-05-27 09:47:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 66,632 KB
最終ジャッジ日時 2024-12-25 19:32:05
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,768 KB
testcase_01 AC 59 ms
65,920 KB
testcase_02 AC 66 ms
66,048 KB
testcase_03 AC 235 ms
65,280 KB
testcase_04 AC 322 ms
65,536 KB
testcase_05 AC 304 ms
65,536 KB
testcase_06 AC 178 ms
65,408 KB
testcase_07 AC 354 ms
66,048 KB
testcase_08 AC 153 ms
65,536 KB
testcase_09 AC 77 ms
64,640 KB
testcase_10 AC 162 ms
64,896 KB
testcase_11 AC 333 ms
65,792 KB
testcase_12 AC 100 ms
65,280 KB
testcase_13 AC 70 ms
65,024 KB
testcase_14 AC 367 ms
66,048 KB
testcase_15 AC 270 ms
65,792 KB
testcase_16 AC 209 ms
65,152 KB
testcase_17 AC 137 ms
65,536 KB
testcase_18 AC 350 ms
65,920 KB
testcase_19 AC 264 ms
65,664 KB
testcase_20 AC 121 ms
65,536 KB
testcase_21 AC 260 ms
65,152 KB
testcase_22 AC 109 ms
64,896 KB
testcase_23 AC 52 ms
64,000 KB
testcase_24 AC 410 ms
66,632 KB
testcase_25 AC 53 ms
64,128 KB
testcase_26 AC 359 ms
65,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

G = []
for i in range(N):
    X,Y = map(int,input().split())
    G.append([X,Y])

ans = 10**10
for i in range(1,301):
    for j in range(1,301):
        tmp = 0
        for a,b in G:
            aa = abs(i-a)
            bb = abs(j-b)
            tmp+=(aa+bb)
        ans = min(ans,tmp)

print(ans)
0