結果

問題 No.2261 Coffee
ユーザー minimumminimum
提出日時 2023-04-07 21:56:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 244,908 KB
最終ジャッジ日時 2024-10-02 19:28:15
合計ジャッジ時間 7,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,600 KB
testcase_01 AC 47 ms
59,648 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 47 ms
59,392 KB
testcase_05 AC 49 ms
61,312 KB
testcase_06 AC 50 ms
62,336 KB
testcase_07 AC 45 ms
58,624 KB
testcase_08 AC 51 ms
61,824 KB
testcase_09 AC 49 ms
61,696 KB
testcase_10 AC 61 ms
66,304 KB
testcase_11 AC 63 ms
66,816 KB
testcase_12 AC 59 ms
65,792 KB
testcase_13 AC 59 ms
65,024 KB
testcase_14 AC 60 ms
66,048 KB
testcase_15 AC 56 ms
64,512 KB
testcase_16 AC 57 ms
65,408 KB
testcase_17 AC 189 ms
77,824 KB
testcase_18 AC 180 ms
77,208 KB
testcase_19 AC 168 ms
77,356 KB
testcase_20 AC 160 ms
77,388 KB
testcase_21 AC 187 ms
77,696 KB
testcase_22 AC 166 ms
77,696 KB
testcase_23 AC 190 ms
78,080 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 = []
MX = 10 ** 18
for i in range(1 << 5):
    tmp = []
    for j in range(N):
        s = 10 ** 16
        for k in range(5):
            if (i >> k) & 1 == 0:
                s += ls[j][k]
            else:
                s -= ls[j][k]
        tmp.append(s * MX + j)
    tmp.sort()
    ls2.append(tmp[0] % MX)
    ls2.append(tmp[-1] % MX)

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