結果

問題 No.2315 Flying Camera
ユーザー 倉
提出日時 2023-05-26 21:57:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 88,624 KB
最終ジャッジ日時 2024-06-07 06:42:54
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
88,576 KB
testcase_01 AC 149 ms
88,320 KB
testcase_02 AC 148 ms
88,320 KB
testcase_03 AC 150 ms
88,360 KB
testcase_04 AC 153 ms
88,192 KB
testcase_05 AC 149 ms
88,320 KB
testcase_06 AC 149 ms
88,320 KB
testcase_07 AC 148 ms
88,320 KB
testcase_08 AC 149 ms
88,424 KB
testcase_09 AC 145 ms
88,624 KB
testcase_10 AC 149 ms
88,528 KB
testcase_11 AC 150 ms
88,192 KB
testcase_12 AC 150 ms
88,376 KB
testcase_13 AC 146 ms
88,468 KB
testcase_14 AC 150 ms
88,448 KB
testcase_15 AC 149 ms
88,192 KB
testcase_16 AC 153 ms
88,192 KB
testcase_17 AC 147 ms
88,404 KB
testcase_18 AC 149 ms
88,320 KB
testcase_19 AC 147 ms
88,268 KB
testcase_20 AC 148 ms
88,448 KB
testcase_21 AC 150 ms
88,388 KB
testcase_22 AC 150 ms
88,308 KB
testcase_23 AC 147 ms
88,616 KB
testcase_24 AC 151 ms
88,320 KB
testcase_25 AC 147 ms
88,320 KB
testcase_26 AC 148 ms
88,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics


N = int(input())

X = []
Y = []
for _ in range(N):
    x, y = map(int, input().split())
    X.append(x)
    Y.append(y)

X.sort()
Y.sort()

a, b = statistics.median(X), statistics.median(Y)
a, b = int(a), int(b)

ans = 0
for x, y in zip(X, Y):
    ans += abs(x-a) + abs(y-b)

print(ans)
0