結果

問題 No.2261 Coffee
ユーザー 👑 rin204rin204
提出日時 2024-04-27 15:27:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,144 KB
最終ジャッジ日時 2024-04-27 15:27:52
合計ジャッジ時間 16,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 46 ms
52,480 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 48 ms
61,568 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 47 ms
61,696 KB
testcase_09 AC 47 ms
60,032 KB
testcase_10 AC 58 ms
66,176 KB
testcase_11 AC 60 ms
66,560 KB
testcase_12 AC 57 ms
65,408 KB
testcase_13 AC 58 ms
65,152 KB
testcase_14 AC 60 ms
65,528 KB
testcase_15 AC 57 ms
64,768 KB
testcase_16 AC 56 ms
65,184 KB
testcase_17 AC 110 ms
77,312 KB
testcase_18 AC 122 ms
77,440 KB
testcase_19 AC 105 ms
77,436 KB
testcase_20 AC 105 ms
77,588 KB
testcase_21 AC 108 ms
77,380 KB
testcase_22 AC 103 ms
77,312 KB
testcase_23 AC 109 ms
77,212 KB
testcase_24 AC 611 ms
89,656 KB
testcase_25 AC 504 ms
87,984 KB
testcase_26 AC 600 ms
90,624 KB
testcase_27 AC 601 ms
89,600 KB
testcase_28 AC 495 ms
88,932 KB
testcase_29 AC 499 ms
88,644 KB
testcase_30 AC 438 ms
85,888 KB
testcase_31 AC 586 ms
91,008 KB
testcase_32 AC 592 ms
91,068 KB
testcase_33 AC 605 ms
91,008 KB
testcase_34 AC 588 ms
91,008 KB
testcase_35 AC 567 ms
90,880 KB
testcase_36 AC 575 ms
90,880 KB
testcase_37 AC 553 ms
91,008 KB
testcase_38 AC 615 ms
90,872 KB
testcase_39 AC 633 ms
90,624 KB
testcase_40 AC 623 ms
90,484 KB
testcase_41 AC 614 ms
91,144 KB
testcase_42 AC 628 ms
90,624 KB
testcase_43 AC 603 ms
90,496 KB
testcase_44 AC 612 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 1 << 60
fi = [-inf] * 32
se = [-inf] * 32
fi_ind = [-1] * 32
se_ind = [-1] * 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]

        if tot > se[bit]:
            se[bit] = tot
            se_ind[bit] = i
            if se[bit] > fi[bit]:
                fi[bit], se[bit] = se[bit], fi[bit]
                fi_ind[bit], se_ind[bit] = se_ind[bit], fi_ind[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_ind[bit]:
            ans = max(ans, tot + se[bit])
        else:
            ans = max(ans, tot + fi[bit])

    print(ans)
0