結果

問題 No.2261 Coffee
ユーザー とりゐとりゐ
提出日時 2023-03-20 05:05:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,692 KB
最終ジャッジ日時 2024-09-18 13:59:57
合計ジャッジ時間 11,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 58 ms
63,488 KB
testcase_11 AC 59 ms
63,488 KB
testcase_12 AC 54 ms
61,696 KB
testcase_13 AC 54 ms
61,184 KB
testcase_14 AC 56 ms
62,720 KB
testcase_15 AC 51 ms
60,288 KB
testcase_16 AC 53 ms
61,184 KB
testcase_17 AC 98 ms
76,928 KB
testcase_18 AC 100 ms
77,312 KB
testcase_19 AC 98 ms
77,184 KB
testcase_20 AC 100 ms
77,140 KB
testcase_21 AC 100 ms
76,800 KB
testcase_22 AC 99 ms
76,744 KB
testcase_23 AC 101 ms
76,928 KB
testcase_24 AC 309 ms
100,340 KB
testcase_25 AC 286 ms
95,676 KB
testcase_26 AC 331 ms
102,388 KB
testcase_27 AC 330 ms
99,292 KB
testcase_28 AC 263 ms
97,736 KB
testcase_29 AC 258 ms
97,068 KB
testcase_30 AC 217 ms
92,452 KB
testcase_31 AC 297 ms
101,204 KB
testcase_32 AC 293 ms
100,960 KB
testcase_33 AC 287 ms
101,080 KB
testcase_34 AC 299 ms
101,460 KB
testcase_35 AC 283 ms
101,448 KB
testcase_36 AC 306 ms
101,204 KB
testcase_37 AC 303 ms
101,212 KB
testcase_38 AC 325 ms
102,440 KB
testcase_39 AC 334 ms
102,300 KB
testcase_40 AC 332 ms
102,564 KB
testcase_41 AC 321 ms
102,692 KB
testcase_42 AC 342 ms
102,444 KB
testcase_43 AC 324 ms
102,420 KB
testcase_44 AC 324 ms
102,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

import itertools
sgns=[i for i in itertools.product([-1,1],repeat=5) if i[0]==1]

n=int(input())
a=[list(map(int,input().split())) for i in range(n)]
ans=[0]*n
for sgn in sgns:
  S=[0]*n
  for i in range(n):
    res=0
    for s,j in zip(sgn,a[i]):
      res+=s*j
    S[i]=res
  mx,mn=max(S),min(S)
  for i in range(n):
    ans[i]=max(ans[i],mx-S[i],S[i]-mn)

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