結果

問題 No.2261 Coffee
ユーザー 👑 rin204rin204
提出日時 2024-04-27 15:24:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 91,968 KB
最終ジャッジ日時 2024-04-27 15:24:40
合計ジャッジ時間 23,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 42 ms
60,416 KB
testcase_06 AC 46 ms
61,568 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 46 ms
61,696 KB
testcase_09 AC 43 ms
60,288 KB
testcase_10 AC 59 ms
65,792 KB
testcase_11 AC 69 ms
66,304 KB
testcase_12 AC 57 ms
65,280 KB
testcase_13 AC 58 ms
65,152 KB
testcase_14 AC 61 ms
65,664 KB
testcase_15 AC 55 ms
64,768 KB
testcase_16 AC 55 ms
65,024 KB
testcase_17 AC 108 ms
77,440 KB
testcase_18 AC 109 ms
77,568 KB
testcase_19 AC 106 ms
77,056 KB
testcase_20 AC 103 ms
77,056 KB
testcase_21 AC 108 ms
77,056 KB
testcase_22 AC 105 ms
77,440 KB
testcase_23 AC 127 ms
77,312 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 498 ms
88,832 KB
testcase_29 AC 485 ms
88,448 KB
testcase_30 AC 433 ms
85,888 KB
testcase_31 AC 609 ms
90,752 KB
testcase_32 AC 603 ms
90,880 KB
testcase_33 AC 572 ms
91,196 KB
testcase_34 AC 608 ms
90,880 KB
testcase_35 AC 577 ms
90,880 KB
testcase_36 AC 629 ms
90,880 KB
testcase_37 AC 597 ms
90,900 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 1 << 60
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