結果

問題 No.2315 Flying Camera
ユーザー navel_tosnavel_tos
提出日時 2023-05-26 21:25:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-06-07 05:19:49
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,280 KB
testcase_01 AC 58 ms
65,792 KB
testcase_02 AC 63 ms
66,688 KB
testcase_03 AC 226 ms
67,712 KB
testcase_04 AC 311 ms
67,840 KB
testcase_05 AC 256 ms
67,840 KB
testcase_06 AC 167 ms
68,096 KB
testcase_07 AC 296 ms
68,864 KB
testcase_08 AC 150 ms
67,584 KB
testcase_09 AC 79 ms
67,328 KB
testcase_10 AC 148 ms
67,456 KB
testcase_11 AC 316 ms
67,840 KB
testcase_12 AC 102 ms
67,072 KB
testcase_13 AC 75 ms
67,712 KB
testcase_14 AC 332 ms
68,224 KB
testcase_15 AC 233 ms
67,968 KB
testcase_16 AC 205 ms
67,840 KB
testcase_17 AC 142 ms
68,096 KB
testcase_18 AC 318 ms
68,224 KB
testcase_19 AC 238 ms
68,480 KB
testcase_20 AC 123 ms
67,328 KB
testcase_21 AC 179 ms
67,840 KB
testcase_22 AC 110 ms
67,072 KB
testcase_23 AC 52 ms
63,360 KB
testcase_24 AC 361 ms
69,120 KB
testcase_25 AC 59 ms
65,664 KB
testcase_26 AC 343 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder390B

N=int(input()); P=[]; ans=2*10**18
for _ in range(N): X,Y=list(map(int,input().split())); P.append((X,Y))
for h in range(301):
    for w in range(301):
        cnt=0
        for x,y in P:
            cnt+=abs(h-x)+abs(w-y)
        ans=min(ans,cnt)
print(ans)
0