結果

問題 No.2261 Coffee
ユーザー 👑 rin204rin204
提出日時 2024-04-27 15:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,533 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-04-27 15:26:59
合計ジャッジ時間 27,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
52,608 KB
testcase_05 AC 50 ms
60,288 KB
testcase_06 AC 54 ms
61,952 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 55 ms
61,440 KB
testcase_09 AC 51 ms
60,288 KB
testcase_10 AC 66 ms
65,920 KB
testcase_11 AC 68 ms
66,560 KB
testcase_12 AC 67 ms
65,152 KB
testcase_13 AC 64 ms
64,768 KB
testcase_14 AC 66 ms
66,176 KB
testcase_15 AC 63 ms
64,896 KB
testcase_16 AC 63 ms
64,640 KB
testcase_17 AC 123 ms
77,312 KB
testcase_18 AC 120 ms
77,184 KB
testcase_19 AC 120 ms
76,928 KB
testcase_20 AC 122 ms
77,312 KB
testcase_21 AC 124 ms
76,928 KB
testcase_22 AC 119 ms
77,184 KB
testcase_23 AC 126 ms
77,312 KB
testcase_24 AC 1,376 ms
90,752 KB
testcase_25 AC 1,199 ms
88,576 KB
testcase_26 AC 1,533 ms
91,520 KB
testcase_27 AC 1,355 ms
90,624 KB
testcase_28 AC 606 ms
88,704 KB
testcase_29 AC 570 ms
88,576 KB
testcase_30 AC 469 ms
85,632 KB
testcase_31 AC 778 ms
91,136 KB
testcase_32 AC 724 ms
90,752 KB
testcase_33 AC 688 ms
90,880 KB
testcase_34 AC 700 ms
90,752 KB
testcase_35 AC 684 ms
90,752 KB
testcase_36 AC 711 ms
90,624 KB
testcase_37 AC 709 ms
91,264 KB
testcase_38 AC 1,467 ms
91,648 KB
testcase_39 AC 1,475 ms
91,648 KB
testcase_40 AC 1,438 ms
91,392 KB
testcase_41 AC 1,447 ms
91,392 KB
testcase_42 AC 1,462 ms
91,520 KB
testcase_43 AC 1,423 ms
91,392 KB
testcase_44 AC 1,480 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [list(map(int, input().split())) for _ in range(n)]

inf = 1 << 80
fi = [-inf] * 32
se = [-inf] * 32

for bit in range(32):
    for i, row in enumerate(A):
        tot = 0
        for j in range(5):
            if bit >> j & 1:
                tot += row[j]
            else:
                tot -= row[j]

        tmp = tot * n + i
        if tmp > se[bit]:
            se[bit] = tmp
            if se[bit] > fi[bit]:
                fi[bit], se[bit] = se[bit], fi[bit]

for i, row in enumerate(A):
    ans = 0
    for bit in range(32):
        tot = 0
        for j in range(5):
            if bit >> j & 1:
                tot -= row[j]
            else:
                tot += row[j]

        if i == fi[bit] % n:
            ans = max(ans, tot + se[bit] // n)
        else:
            ans = max(ans, tot + fi[bit] // n)

    print(ans)
0