結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,136 KB
testcase_01 AC 39 ms
53,564 KB
testcase_02 AC 39 ms
53,020 KB
testcase_03 AC 39 ms
52,796 KB
testcase_04 AC 39 ms
52,588 KB
testcase_05 AC 46 ms
61,184 KB
testcase_06 AC 49 ms
62,488 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 50 ms
61,312 KB
testcase_09 AC 46 ms
60,160 KB
testcase_10 AC 58 ms
65,900 KB
testcase_11 AC 59 ms
66,432 KB
testcase_12 AC 58 ms
65,664 KB
testcase_13 AC 57 ms
64,896 KB
testcase_14 AC 59 ms
65,792 KB
testcase_15 AC 56 ms
64,512 KB
testcase_16 AC 56 ms
64,896 KB
testcase_17 AC 112 ms
77,056 KB
testcase_18 AC 107 ms
77,056 KB
testcase_19 AC 108 ms
76,936 KB
testcase_20 AC 107 ms
76,976 KB
testcase_21 AC 108 ms
76,980 KB
testcase_22 AC 106 ms
76,928 KB
testcase_23 AC 110 ms
77,080 KB
testcase_24 AC 654 ms
89,612 KB
testcase_25 AC 558 ms
87,544 KB
testcase_26 AC 679 ms
90,752 KB
testcase_27 AC 636 ms
89,344 KB
testcase_28 AC 562 ms
88,760 KB
testcase_29 AC 554 ms
88,576 KB
testcase_30 AC 454 ms
86,016 KB
testcase_31 AC 671 ms
90,760 KB
testcase_32 AC 640 ms
90,644 KB
testcase_33 AC 656 ms
90,880 KB
testcase_34 AC 660 ms
91,008 KB
testcase_35 AC 637 ms
91,096 KB
testcase_36 AC 644 ms
90,752 KB
testcase_37 AC 640 ms
90,880 KB
testcase_38 AC 692 ms
90,368 KB
testcase_39 AC 692 ms
90,428 KB
testcase_40 AC 708 ms
90,496 KB
testcase_41 AC 703 ms
90,296 KB
testcase_42 AC 693 ms
90,624 KB
testcase_43 AC 687 ms
90,496 KB
testcase_44 AC 702 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