結果

問題 No.2261 Coffee
ユーザー minimumminimum
提出日時 2023-04-07 21:53:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 564 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 154,840 KB
最終ジャッジ日時 2024-10-02 19:26:08
合計ジャッジ時間 7,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 46 ms
60,032 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 45 ms
59,904 KB
testcase_05 AC 48 ms
61,056 KB
testcase_06 AC 50 ms
62,208 KB
testcase_07 AC 43 ms
58,752 KB
testcase_08 AC 49 ms
62,080 KB
testcase_09 AC 48 ms
61,056 KB
testcase_10 AC 61 ms
68,864 KB
testcase_11 AC 63 ms
70,144 KB
testcase_12 AC 58 ms
66,944 KB
testcase_13 AC 57 ms
66,304 KB
testcase_14 AC 61 ms
68,864 KB
testcase_15 AC 56 ms
65,280 KB
testcase_16 AC 59 ms
66,560 KB
testcase_17 AC 249 ms
78,336 KB
testcase_18 AC 239 ms
77,824 KB
testcase_19 AC 221 ms
77,608 KB
testcase_20 AC 202 ms
77,668 KB
testcase_21 AC 248 ms
77,820 KB
testcase_22 AC 206 ms
77,440 KB
testcase_23 AC 257 ms
78,200 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 #

N = int(input())
ls = [list(map(int, input().split())) for _ in range(N)]
ls2 = []
for i in range(1 << 5):
    tmp = []
    for j in range(N):
        s = 0
        for k in range(5):
            if (i >> k) & 1 == 0:
                s += ls[j][k]
            else:
                s -= ls[j][k]
        tmp.append((s, j))
    tmp.sort()
    ls2.append(tmp[0][1])
    ls2.append(tmp[-1][1])

for k in range(N):
    ans = 0
    for i in ls2:
        s = 0
        for j in range(5):
            s += abs(ls[k][j] - ls[i][j])
        ans = max(ans, s)
    print(ans)
0