結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,396 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
52,684 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 47 ms
60,288 KB
testcase_06 AC 48 ms
61,440 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 50 ms
61,952 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 60 ms
65,920 KB
testcase_11 AC 59 ms
65,920 KB
testcase_12 AC 58 ms
65,280 KB
testcase_13 AC 56 ms
64,896 KB
testcase_14 AC 58 ms
65,792 KB
testcase_15 AC 56 ms
64,512 KB
testcase_16 AC 57 ms
65,408 KB
testcase_17 AC 112 ms
77,184 KB
testcase_18 AC 109 ms
77,164 KB
testcase_19 AC 109 ms
77,312 KB
testcase_20 AC 106 ms
77,216 KB
testcase_21 AC 109 ms
77,164 KB
testcase_22 AC 104 ms
77,108 KB
testcase_23 AC 112 ms
77,440 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 538 ms
88,820 KB
testcase_29 AC 535 ms
88,320 KB
testcase_30 AC 441 ms
85,888 KB
testcase_31 AC 673 ms
90,948 KB
testcase_32 AC 627 ms
90,752 KB
testcase_33 AC 628 ms
90,744 KB
testcase_34 AC 630 ms
91,000 KB
testcase_35 AC 633 ms
90,728 KB
testcase_36 AC 635 ms
91,096 KB
testcase_37 AC 634 ms
90,884 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