結果

問題 No.2261 Coffee
ユーザー tamatotamato
提出日時 2023-04-07 22:23:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,141 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 107,320 KB
最終ジャッジ日時 2024-10-02 19:51:25
合計ジャッジ時間 7,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
67,328 KB
testcase_01 AC 57 ms
66,176 KB
testcase_02 AC 50 ms
61,824 KB
testcase_03 AC 50 ms
62,080 KB
testcase_04 AC 57 ms
65,664 KB
testcase_05 AC 61 ms
67,200 KB
testcase_06 AC 65 ms
68,992 KB
testcase_07 AC 57 ms
64,768 KB
testcase_08 AC 65 ms
69,376 KB
testcase_09 AC 61 ms
67,584 KB
testcase_10 AC 91 ms
77,088 KB
testcase_11 AC 96 ms
77,148 KB
testcase_12 AC 90 ms
77,576 KB
testcase_13 AC 88 ms
76,928 KB
testcase_14 AC 90 ms
77,440 KB
testcase_15 AC 87 ms
77,040 KB
testcase_16 AC 87 ms
77,260 KB
testcase_17 AC 243 ms
78,092 KB
testcase_18 WA -
testcase_19 AC 220 ms
78,004 KB
testcase_20 AC 193 ms
77,952 KB
testcase_21 AC 243 ms
78,116 KB
testcase_22 AC 205 ms
78,040 KB
testcase_23 AC 242 ms
77,952 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353
from random import randint

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 _ in range(100 - 32):
    X = []
    for _ in range(5):
        X.append(randint(-5, 5))
    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]]
        if i != j:
            ans = max(ans, dist(line, line2))
    print(ans)
0