結果

問題 No.2261 Coffee
ユーザー sotanishysotanishy
提出日時 2023-04-07 21:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 114,424 KB
最終ジャッジ日時 2024-10-02 18:50:39
合計ジャッジ時間 19,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 48 ms
59,008 KB
testcase_06 AC 49 ms
59,776 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 49 ms
59,520 KB
testcase_09 AC 46 ms
59,520 KB
testcase_10 AC 50 ms
62,720 KB
testcase_11 AC 50 ms
62,592 KB
testcase_12 AC 49 ms
62,080 KB
testcase_13 AC 48 ms
61,696 KB
testcase_14 AC 51 ms
62,976 KB
testcase_15 AC 48 ms
61,568 KB
testcase_16 AC 49 ms
61,440 KB
testcase_17 AC 87 ms
77,596 KB
testcase_18 AC 95 ms
77,312 KB
testcase_19 AC 94 ms
77,184 KB
testcase_20 AC 95 ms
77,440 KB
testcase_21 AC 99 ms
77,440 KB
testcase_22 AC 94 ms
76,928 KB
testcase_23 AC 99 ms
77,568 KB
testcase_24 AC 570 ms
111,232 KB
testcase_25 AC 517 ms
106,060 KB
testcase_26 AC 660 ms
113,536 KB
testcase_27 AC 614 ms
110,680 KB
testcase_28 AC 489 ms
107,904 KB
testcase_29 AC 489 ms
105,856 KB
testcase_30 AC 396 ms
100,736 KB
testcase_31 AC 589 ms
113,920 KB
testcase_32 AC 562 ms
113,956 KB
testcase_33 AC 568 ms
114,364 KB
testcase_34 AC 568 ms
114,276 KB
testcase_35 AC 645 ms
113,792 KB
testcase_36 AC 561 ms
114,176 KB
testcase_37 AC 583 ms
114,208 KB
testcase_38 AC 611 ms
114,048 KB
testcase_39 AC 651 ms
114,424 KB
testcase_40 AC 587 ms
114,208 KB
testcase_41 AC 606 ms
114,304 KB
testcase_42 AC 607 ms
113,920 KB
testcase_43 AC 623 ms
114,176 KB
testcase_44 AC 626 ms
114,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
vals = [[0] * (1 << 5) for _ in range(N)]
minval = [10**18] * (1 << 5)
for i in range(N):
    ps = list(map(int, input().split()))
    for S in range(1 << 5):
        for k in range(5):
            vals[i][S] += (-1)**(S >> k & 1) * ps[k]
        minval[S] = min(minval[S], vals[i][S])
ans = [0]*N
for i in range(N):
    for S in range(1 << 5):
        ans[i] = max(ans[i], vals[i][S]-minval[S])
print(*ans, sep="\n")
0