結果

問題 No.2315 Flying Camera
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 00:46:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-07 21:02:31
合計ジャッジ時間 11,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 332 ms
75,776 KB
testcase_04 WA -
testcase_05 AC 556 ms
75,920 KB
testcase_06 AC 157 ms
76,152 KB
testcase_07 AC 926 ms
76,160 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 117 ms
75,768 KB
testcase_11 WA -
testcase_12 AC 65 ms
72,856 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 388 ms
75,832 KB
testcase_16 AC 230 ms
75,648 KB
testcase_17 WA -
testcase_18 AC 1,003 ms
75,776 KB
testcase_19 AC 440 ms
75,904 KB
testcase_20 WA -
testcase_21 AC 167 ms
76,416 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,584 KB
testcase_24 AC 1,335 ms
76,080 KB
testcase_25 WA -
testcase_26 AC 1,018 ms
76,268 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