結果

問題 No.2261 Coffee
ユーザー tamatotamato
提出日時 2023-04-07 22:30:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,506 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,936 KB
最終ジャッジ日時 2024-10-02 19:58:00
合計ジャッジ時間 32,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 41 ms
52,992 KB
testcase_05 AC 46 ms
59,648 KB
testcase_06 AC 49 ms
61,824 KB
testcase_07 AC 45 ms
52,480 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 47 ms
60,288 KB
testcase_10 AC 88 ms
76,544 KB
testcase_11 AC 87 ms
76,672 KB
testcase_12 AC 85 ms
76,672 KB
testcase_13 AC 84 ms
76,544 KB
testcase_14 AC 86 ms
76,544 KB
testcase_15 AC 82 ms
75,008 KB
testcase_16 AC 86 ms
76,160 KB
testcase_17 AC 154 ms
77,184 KB
testcase_18 AC 143 ms
77,312 KB
testcase_19 AC 136 ms
77,312 KB
testcase_20 AC 135 ms
77,184 KB
testcase_21 AC 148 ms
77,184 KB
testcase_22 AC 135 ms
77,184 KB
testcase_23 AC 145 ms
77,440 KB
testcase_24 AC 1,307 ms
101,776 KB
testcase_25 AC 1,139 ms
96,400 KB
testcase_26 AC 1,358 ms
102,800 KB
testcase_27 AC 1,308 ms
100,880 KB
testcase_28 AC 1,124 ms
98,632 KB
testcase_29 AC 1,127 ms
98,464 KB
testcase_30 AC 901 ms
92,592 KB
testcase_31 AC 1,347 ms
102,720 KB
testcase_32 AC 1,327 ms
102,468 KB
testcase_33 AC 1,368 ms
102,472 KB
testcase_34 AC 1,282 ms
102,592 KB
testcase_35 AC 1,342 ms
102,236 KB
testcase_36 AC 1,336 ms
102,208 KB
testcase_37 AC 1,277 ms
102,468 KB
testcase_38 AC 1,421 ms
102,512 KB
testcase_39 AC 1,416 ms
102,644 KB
testcase_40 AC 1,506 ms
102,644 KB
testcase_41 AC 1,392 ms
102,388 KB
testcase_42 AC 1,421 ms
102,936 KB
testcase_43 AC 1,465 ms
102,552 KB
testcase_44 AC 1,398 ms
102,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def dist(X, Y):
    return sum([abs(x - y) for x, y in zip(X, Y)])


N = int(input())
ABCDE = []
for _ in range(N):
    ABCDE.append(tuple(map(int, input().split())))

M = []
for i in range(32):
    X = []
    for j in range(5):
        if i >> j & 1:
            X.append(1)
        else:
            X.append(-1)
    ma = -float("inf")
    ma_idx = -1
    for k, line in enumerate(ABCDE):
        z = 0
        for j in range(5):
            z += line[j] * X[j]
        if z > ma:
            ma = z
            ma_idx = k
    M.append(ma_idx)


for i in range(N):
    line = ABCDE[i]
    ans = 0
    for j in range(len(M)):
        line2 = ABCDE[M[j]]
        ans = max(ans, dist(line, line2))
    print(ans)
0