結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
64,896 KB
testcase_01 AC 65 ms
65,920 KB
testcase_02 AC 72 ms
66,176 KB
testcase_03 AC 254 ms
65,152 KB
testcase_04 AC 371 ms
65,792 KB
testcase_05 AC 312 ms
65,664 KB
testcase_06 AC 186 ms
65,536 KB
testcase_07 AC 365 ms
66,048 KB
testcase_08 AC 158 ms
65,920 KB
testcase_09 AC 83 ms
64,640 KB
testcase_10 AC 170 ms
65,280 KB
testcase_11 AC 354 ms
65,664 KB
testcase_12 AC 107 ms
65,152 KB
testcase_13 AC 78 ms
65,024 KB
testcase_14 AC 380 ms
65,792 KB
testcase_15 AC 279 ms
65,792 KB
testcase_16 AC 220 ms
65,920 KB
testcase_17 AC 145 ms
65,792 KB
testcase_18 AC 374 ms
65,920 KB
testcase_19 AC 289 ms
65,772 KB
testcase_20 AC 127 ms
65,408 KB
testcase_21 AC 274 ms
65,408 KB
testcase_22 AC 120 ms
65,024 KB
testcase_23 AC 59 ms
63,744 KB
testcase_24 AC 416 ms
66,128 KB
testcase_25 AC 59 ms
64,256 KB
testcase_26 AC 380 ms
65,920 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