結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,344 KB
testcase_01 AC 45 ms
129,024 KB
testcase_02 AC 45 ms
57,472 KB
testcase_03 AC 810 ms
153,472 KB
testcase_04 TLE -
testcase_05 AC 1,401 ms
82,432 KB
testcase_06 AC 389 ms
76,928 KB
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 271 ms
77,312 KB
testcase_11 TLE -
testcase_12 AC 159 ms
76,416 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 AC 943 ms
77,184 KB
testcase_16 AC 542 ms
76,288 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 AC 1,158 ms
76,544 KB
testcase_20 WA -
testcase_21 AC 402 ms
76,288 KB
testcase_22 WA -
testcase_23 AC 41 ms
51,584 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(i+1):
        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