結果

問題 No.2315 Flying Camera
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 00:43:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 155,520 KB
最終ジャッジ日時 2024-12-26 06:18:09
合計ジャッジ時間 36,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 48 ms
129,152 KB
testcase_02 AC 55 ms
64,128 KB
testcase_03 AC 1,586 ms
155,520 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 640 ms
81,920 KB
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 535 ms
82,048 KB
testcase_11 TLE -
testcase_12 AC 182 ms
81,884 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 AC 1,958 ms
77,824 KB
testcase_16 AC 1,005 ms
77,568 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 712 ms
76,544 KB
testcase_22 WA -
testcase_23 AC 47 ms
51,968 KB
testcase_24 TLE -
testcase_25 WA -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int, input().split())) for _ in range(N)]


def f(a, b):
    return sum(abs(p-q) for p, q in zip(a, b))


ans = 10**18
for i in range(N):
    p = A[i]
    for j in range(N):
        q = A[j]
        r = [(x+y)//2 for x, y in zip(p, q)]
        ct = sum(f(r, a) for a in A)
        ans = min(ans, ct)

print(ans)
0