結果

問題 No.2261 Coffee
ユーザー titiatitia
提出日時 2023-04-07 22:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,312 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 116,996 KB
最終ジャッジ日時 2024-10-02 19:51:11
合計ジャッジ時間 29,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,492 KB
testcase_01 AC 45 ms
60,416 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 46 ms
59,520 KB
testcase_05 AC 47 ms
61,440 KB
testcase_06 AC 48 ms
62,208 KB
testcase_07 AC 42 ms
59,000 KB
testcase_08 AC 48 ms
62,208 KB
testcase_09 AC 51 ms
61,000 KB
testcase_10 AC 57 ms
66,048 KB
testcase_11 AC 59 ms
66,944 KB
testcase_12 AC 58 ms
65,280 KB
testcase_13 AC 55 ms
65,152 KB
testcase_14 AC 58 ms
65,792 KB
testcase_15 AC 55 ms
64,896 KB
testcase_16 AC 55 ms
65,664 KB
testcase_17 AC 112 ms
77,988 KB
testcase_18 AC 109 ms
77,568 KB
testcase_19 AC 104 ms
77,552 KB
testcase_20 AC 99 ms
77,416 KB
testcase_21 AC 110 ms
77,824 KB
testcase_22 AC 101 ms
77,440 KB
testcase_23 AC 112 ms
77,824 KB
testcase_24 AC 1,213 ms
113,280 KB
testcase_25 AC 1,061 ms
107,940 KB
testcase_26 AC 1,312 ms
115,404 KB
testcase_27 AC 1,197 ms
112,628 KB
testcase_28 AC 1,063 ms
110,080 KB
testcase_29 AC 1,059 ms
109,192 KB
testcase_30 AC 834 ms
102,016 KB
testcase_31 AC 1,132 ms
116,736 KB
testcase_32 AC 1,133 ms
116,752 KB
testcase_33 AC 1,153 ms
116,720 KB
testcase_34 AC 1,154 ms
116,608 KB
testcase_35 AC 1,179 ms
116,996 KB
testcase_36 AC 1,167 ms
116,896 KB
testcase_37 AC 1,166 ms
116,864 KB
testcase_38 AC 1,177 ms
115,616 KB
testcase_39 AC 1,171 ms
115,416 KB
testcase_40 AC 1,150 ms
115,712 KB
testcase_41 AC 1,161 ms
115,468 KB
testcase_42 AC 1,220 ms
115,712 KB
testcase_43 AC 1,225 ms
115,560 KB
testcase_44 AC 1,207 ms
115,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

LIST=[[0]*N for i in range(32)]

for i in range(N):
    for j in range(32):
        sc=0
        for k in range(5):
            if j & (1<<k) != 0:
                sc+=A[i][k]
            else:
                sc-=A[i][k]

        LIST[j][i]=sc

LIST2=[]
for i in range(32):
    k=LIST[i].index(max(LIST[i]))
    LIST2.append(k)

    k=LIST[i].index(min(LIST[i]))
    LIST2.append(k)


for i in range(N):
    ANS=0

    for j in LIST2:
        sc=0
        for k in range(5):
            sc+=abs(A[i][k]-A[j][k])
            ANS=max(ANS,sc)

    print(ANS)
        
0