結果

問題 No.2261 Coffee
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-04-07 22:14:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 100,288 KB
最終ジャッジ日時 2024-10-02 19:44:00
合計ジャッジ時間 30,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 43 ms
59,520 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 44 ms
59,904 KB
testcase_05 AC 46 ms
61,696 KB
testcase_06 AC 49 ms
62,592 KB
testcase_07 AC 42 ms
59,520 KB
testcase_08 AC 49 ms
62,592 KB
testcase_09 AC 47 ms
61,568 KB
testcase_10 AC 59 ms
66,560 KB
testcase_11 AC 67 ms
66,688 KB
testcase_12 AC 59 ms
66,048 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 57 ms
66,176 KB
testcase_15 AC 56 ms
65,408 KB
testcase_16 AC 55 ms
65,152 KB
testcase_17 AC 115 ms
77,440 KB
testcase_18 AC 114 ms
76,928 KB
testcase_19 AC 107 ms
77,312 KB
testcase_20 AC 103 ms
76,928 KB
testcase_21 AC 118 ms
77,184 KB
testcase_22 AC 107 ms
77,056 KB
testcase_23 AC 116 ms
77,056 KB
testcase_24 AC 1,293 ms
99,132 KB
testcase_25 AC 1,151 ms
94,808 KB
testcase_26 AC 1,378 ms
100,024 KB
testcase_27 AC 1,272 ms
98,748 KB
testcase_28 AC 1,059 ms
96,072 KB
testcase_29 AC 1,154 ms
95,884 KB
testcase_30 AC 891 ms
90,900 KB
testcase_31 AC 1,224 ms
99,756 KB
testcase_32 AC 1,182 ms
99,732 KB
testcase_33 AC 1,240 ms
99,732 KB
testcase_34 AC 1,180 ms
99,860 KB
testcase_35 AC 1,238 ms
99,728 KB
testcase_36 AC 1,226 ms
100,116 KB
testcase_37 AC 1,296 ms
99,892 KB
testcase_38 AC 1,372 ms
100,164 KB
testcase_39 AC 1,300 ms
100,168 KB
testcase_40 AC 1,331 ms
100,284 KB
testcase_41 AC 1,267 ms
100,288 KB
testcase_42 AC 1,408 ms
100,176 KB
testcase_43 AC 1,413 ms
100,036 KB
testcase_44 AC 1,309 ms
100,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

inf = float("inf")

N = int(stdin.readline())

bits = [ [(inf,inf)] * (2**5) for i in range(2) ]

points = []

for i in range(N):

    A = list(map(int,stdin.readline().split()))
    points.append(A)
    
    for j in range(2**5):

        x = 0

        for k in range(5):

            if 2**k & j:
                x += A[k]
            else:
                x -= A[k]

        tup = (x,i)

        if bits[0][j] > tup:
            bits[1][j] = bits[0][j]
            bits[0][j] = tup
        elif bits[1][j] > tup:
            bits[1][j] = tup
        #bits[j] = min(bits[j] , (x , i) )

ans = [-inf] * N

#print (bits)

for i in range(N):

    for _,j in bits[0]+bits[1]:

        now = 0

        for k in range(5):

            now += abs(points[i][k] - points[j][k])
    
        ans[i] = max(ans[i] , now)

print (*ans,sep="\n")
0