結果

問題 No.2261 Coffee
ユーザー flygonflygon
提出日時 2023-04-07 21:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 118,400 KB
最終ジャッジ日時 2024-10-02 19:28:07
合計ジャッジ時間 17,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,272 KB
testcase_01 AC 49 ms
54,272 KB
testcase_02 AC 49 ms
54,528 KB
testcase_03 AC 49 ms
54,528 KB
testcase_04 AC 50 ms
54,656 KB
testcase_05 AC 55 ms
61,696 KB
testcase_06 AC 57 ms
62,464 KB
testcase_07 AC 48 ms
54,272 KB
testcase_08 AC 56 ms
62,080 KB
testcase_09 AC 56 ms
61,952 KB
testcase_10 AC 66 ms
66,048 KB
testcase_11 AC 68 ms
66,432 KB
testcase_12 AC 64 ms
65,280 KB
testcase_13 AC 63 ms
64,640 KB
testcase_14 AC 65 ms
65,792 KB
testcase_15 AC 63 ms
64,640 KB
testcase_16 AC 63 ms
64,640 KB
testcase_17 AC 105 ms
77,952 KB
testcase_18 AC 103 ms
77,696 KB
testcase_19 AC 102 ms
78,208 KB
testcase_20 AC 100 ms
78,336 KB
testcase_21 AC 103 ms
77,696 KB
testcase_22 AC 101 ms
77,824 KB
testcase_23 AC 106 ms
77,696 KB
testcase_24 AC 593 ms
115,840 KB
testcase_25 AC 523 ms
109,440 KB
testcase_26 AC 688 ms
117,632 KB
testcase_27 AC 644 ms
115,200 KB
testcase_28 AC 505 ms
111,104 KB
testcase_29 AC 499 ms
110,592 KB
testcase_30 AC 405 ms
102,272 KB
testcase_31 AC 594 ms
118,016 KB
testcase_32 AC 598 ms
117,632 KB
testcase_33 AC 588 ms
117,632 KB
testcase_34 AC 606 ms
117,760 KB
testcase_35 AC 656 ms
117,760 KB
testcase_36 AC 599 ms
118,016 KB
testcase_37 AC 593 ms
117,632 KB
testcase_38 AC 633 ms
117,888 KB
testcase_39 AC 692 ms
117,888 KB
testcase_40 AC 651 ms
117,888 KB
testcase_41 AC 644 ms
118,144 KB
testcase_42 AC 649 ms
118,400 KB
testcase_43 AC 633 ms
118,272 KB
testcase_44 AC 636 ms
117,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
par = []
d = defaultdict(lambda: -float("inf"))
for i in range(n):
    a = list(map(int,input().split()))
    l = []
    for bit in range(32):
        tmp = 0
        for j in range(5):
            if (bit >> j) & 1:
                tmp += a[j]
            else:
                tmp -= a[j]
        l.append(tmp)
        d[bit] = max(d[bit], tmp)
    par.append(l)

for i in range(n):
    ans = -float("inf")
    for j in range(32):
        ans = max(ans, d[31-j] + par[i][j])
    print(ans)
    




0