結果

問題 No.2261 Coffee
ユーザー ShirotsumeShirotsume
提出日時 2023-04-07 21:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 124,544 KB
最終ジャッジ日時 2024-10-02 19:22:29
合計ジャッジ時間 16,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 41 ms
54,528 KB
testcase_05 AC 46 ms
60,928 KB
testcase_06 AC 46 ms
61,312 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 50 ms
61,184 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 56 ms
65,408 KB
testcase_11 AC 56 ms
66,048 KB
testcase_12 AC 55 ms
64,768 KB
testcase_13 AC 55 ms
64,384 KB
testcase_14 AC 55 ms
65,280 KB
testcase_15 AC 53 ms
64,384 KB
testcase_16 AC 54 ms
65,024 KB
testcase_17 AC 98 ms
78,316 KB
testcase_18 AC 97 ms
78,592 KB
testcase_19 AC 97 ms
78,520 KB
testcase_20 AC 96 ms
77,928 KB
testcase_21 AC 98 ms
78,208 KB
testcase_22 AC 95 ms
78,020 KB
testcase_23 AC 98 ms
78,396 KB
testcase_24 AC 520 ms
120,832 KB
testcase_25 AC 484 ms
114,892 KB
testcase_26 AC 554 ms
123,904 KB
testcase_27 AC 508 ms
120,448 KB
testcase_28 AC 449 ms
116,480 KB
testcase_29 AC 451 ms
115,436 KB
testcase_30 AC 370 ms
107,008 KB
testcase_31 AC 534 ms
124,416 KB
testcase_32 AC 515 ms
124,160 KB
testcase_33 AC 529 ms
124,032 KB
testcase_34 AC 527 ms
124,448 KB
testcase_35 AC 546 ms
124,180 KB
testcase_36 AC 521 ms
124,240 KB
testcase_37 AC 540 ms
124,192 KB
testcase_38 AC 574 ms
124,544 KB
testcase_39 AC 541 ms
124,288 KB
testcase_40 AC 555 ms
124,160 KB
testcase_41 AC 564 ms
124,208 KB
testcase_42 AC 546 ms
124,504 KB
testcase_43 AC 561 ms
124,288 KB
testcase_44 AC 558 ms
124,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

ABCDE = [li() for _ in range(n)]

sgn = [[0] * 32 for i in range(n)]

for i in range(n):
    a = ABCDE[i]
    for bit in range(32):
        for j in range(5):
            if 1 & (bit >> j):
                sgn[i][bit] -= a[j]
            else:
                sgn[i][bit] += a[j]
ans = [0] * n
sgnmaxi = [-inf] * 32

for i in range(n):
    for j in range(32):
        sgnmaxi[j] = max(sgnmaxi[j], sgn[i][j])

for i in range(n):
    for j in range(32):
        ans[i] = max(ans[i], sgn[i][j] + sgnmaxi[31 ^ j])
        
for v in ans:
    print(v)
0