結果

問題 No.2261 Coffee
ユーザー tassei903tassei903
提出日時 2023-04-07 21:45:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,312 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,520 KB
最終ジャッジ日時 2024-10-02 19:19:28
合計ジャッジ時間 27,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 48 ms
59,136 KB
testcase_06 AC 49 ms
59,776 KB
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 50 ms
59,648 KB
testcase_09 AC 49 ms
59,392 KB
testcase_10 AC 99 ms
76,416 KB
testcase_11 AC 104 ms
76,288 KB
testcase_12 AC 83 ms
71,040 KB
testcase_13 AC 79 ms
68,992 KB
testcase_14 AC 96 ms
76,416 KB
testcase_15 AC 66 ms
65,792 KB
testcase_16 AC 75 ms
69,120 KB
testcase_17 AC 287 ms
79,836 KB
testcase_18 AC 291 ms
79,952 KB
testcase_19 AC 282 ms
80,216 KB
testcase_20 AC 272 ms
80,272 KB
testcase_21 AC 298 ms
79,844 KB
testcase_22 AC 286 ms
80,468 KB
testcase_23 AC 297 ms
80,120 KB
testcase_24 AC 1,190 ms
92,652 KB
testcase_25 AC 1,075 ms
91,028 KB
testcase_26 AC 1,312 ms
94,076 KB
testcase_27 AC 1,239 ms
92,624 KB
testcase_28 AC 789 ms
91,916 KB
testcase_29 AC 766 ms
90,904 KB
testcase_30 AC 671 ms
89,056 KB
testcase_31 AC 825 ms
93,828 KB
testcase_32 AC 830 ms
94,020 KB
testcase_33 AC 843 ms
93,688 KB
testcase_34 AC 825 ms
93,808 KB
testcase_35 AC 921 ms
93,576 KB
testcase_36 AC 850 ms
93,540 KB
testcase_37 AC 844 ms
93,404 KB
testcase_38 AC 1,198 ms
94,016 KB
testcase_39 AC 1,234 ms
93,664 KB
testcase_40 AC 1,189 ms
93,900 KB
testcase_41 AC 1,193 ms
93,916 KB
testcase_42 AC 1,210 ms
94,520 KB
testcase_43 AC 1,226 ms
93,744 KB
testcase_44 AC 1,197 ms
94,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
inf = float("inf")
m = 5
n = ni()
a = [na() for i in range(n)]
dp = [-inf] * (1<<m)

for i in range(n):
    for j in range(1<<m):
        res = 0
        for k in range(m):
            if j >> k & 1:
                res += a[i][k]
            else:
                res -= a[i][k]
        dp[j] = max(dp[j], res * n + i)
def dist(p, q):
    return abs(p[0]-q[0])+abs(p[1]-q[1])+abs(p[2]-q[2])+abs(p[3]-q[3])+abs(p[4]-q[4])


for i in range(n):
    res = -inf
    for j in range(1<<m):
        c = dp[j]%n
        res = max(res, dist(a[i], a[c]))
    print(res)
0