結果

問題 No.2261 Coffee
ユーザー 👑 KazunKazun
提出日時 2023-04-07 21:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 91,692 KB
最終ジャッジ日時 2024-10-02 19:11:55
合計ジャッジ時間 21,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
52,832 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 42 ms
57,728 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 43 ms
58,496 KB
testcase_09 AC 43 ms
58,112 KB
testcase_10 AC 104 ms
76,236 KB
testcase_11 AC 111 ms
76,844 KB
testcase_12 AC 90 ms
76,124 KB
testcase_13 AC 81 ms
75,904 KB
testcase_14 AC 100 ms
76,800 KB
testcase_15 AC 70 ms
75,732 KB
testcase_16 AC 79 ms
76,160 KB
testcase_17 AC 339 ms
80,760 KB
testcase_18 AC 338 ms
80,668 KB
testcase_19 AC 329 ms
80,684 KB
testcase_20 AC 324 ms
79,996 KB
testcase_21 AC 328 ms
80,776 KB
testcase_22 AC 323 ms
79,756 KB
testcase_23 AC 340 ms
80,360 KB
testcase_24 AC 694 ms
90,608 KB
testcase_25 AC 650 ms
89,368 KB
testcase_26 AC 722 ms
90,996 KB
testcase_27 AC 688 ms
91,400 KB
testcase_28 AC 619 ms
85,320 KB
testcase_29 AC 613 ms
85,008 KB
testcase_30 AC 559 ms
84,280 KB
testcase_31 AC 692 ms
86,560 KB
testcase_32 AC 674 ms
86,052 KB
testcase_33 AC 687 ms
86,408 KB
testcase_34 AC 707 ms
86,100 KB
testcase_35 AC 694 ms
87,076 KB
testcase_36 AC 707 ms
86,696 KB
testcase_37 AC 693 ms
86,540 KB
testcase_38 AC 730 ms
91,232 KB
testcase_39 AC 744 ms
91,036 KB
testcase_40 AC 744 ms
91,548 KB
testcase_41 AC 738 ms
91,284 KB
testcase_42 AC 751 ms
91,088 KB
testcase_43 AC 742 ms
90,696 KB
testcase_44 AC 738 ms
91,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sgn(s,k):
    return 1 if (s>>k)&1 else -1

def solve():
    N=int(input())
    A=[0]*N; B=[0]*N; C=[0]*N; D=[0]*N; E=[0]*N
    for i in range(N):
        A[i],B[i],C[i],D[i],E[i]=map(int,input().split())

    K=5

    inf=float("inf")
    T=[inf]*(1<<K)
    for s in range(1<<K):
        for i in range(N):
            T[s]=min(T[s],
                    sgn(s,0)*A[i]+sgn(s,1)*B[i]+sgn(s,2)*C[i]+sgn(s,3)*D[i]+sgn(s,4)*E[i])

    Ans=[-inf]*N
    for i in range(N):
        for s in range(1<<K):
            Ans[i]=max(Ans[i],
                    sgn(s,0)*A[i]+sgn(s,1)*B[i]+sgn(s,2)*C[i]+sgn(s,3)*D[i]+sgn(s,4)*E[i]-T[s])
    return Ans

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

write("\n".join(map(str,solve())))
0