結果

問題 No.2315 Flying Camera
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 00:46:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,208 KB
最終ジャッジ日時 2024-12-26 06:20:34
合計ジャッジ時間 11,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 313 ms
75,904 KB
testcase_04 WA -
testcase_05 AC 553 ms
75,884 KB
testcase_06 AC 160 ms
75,596 KB
testcase_07 AC 954 ms
75,904 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 110 ms
75,648 KB
testcase_11 WA -
testcase_12 AC 64 ms
72,960 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 396 ms
75,584 KB
testcase_16 AC 233 ms
75,764 KB
testcase_17 WA -
testcase_18 AC 947 ms
75,904 KB
testcase_19 AC 437 ms
75,612 KB
testcase_20 WA -
testcase_21 AC 170 ms
75,776 KB
testcase_22 WA -
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 1,303 ms
75,904 KB
testcase_25 WA -
testcase_26 AC 961 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = 0
        for k in range(N):
            for n in range(2):
                ct += abs(r[n]-A[k][n])
        ans = min(ans, ct)

print(ans)
0