結果

問題 No.2261 Coffee
ユーザー とりゐとりゐ
提出日時 2023-03-20 00:43:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-09-18 13:56:13
合計ジャッジ時間 11,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 34 ms
52,480 KB
testcase_10 AC 51 ms
64,256 KB
testcase_11 AC 52 ms
64,640 KB
testcase_12 AC 57 ms
64,640 KB
testcase_13 AC 53 ms
63,872 KB
testcase_14 AC 52 ms
64,256 KB
testcase_15 AC 48 ms
62,848 KB
testcase_16 AC 52 ms
64,128 KB
testcase_17 AC 88 ms
76,928 KB
testcase_18 AC 84 ms
77,440 KB
testcase_19 AC 86 ms
77,312 KB
testcase_20 AC 86 ms
77,056 KB
testcase_21 AC 89 ms
77,440 KB
testcase_22 AC 81 ms
77,056 KB
testcase_23 AC 83 ms
77,184 KB
testcase_24 AC 394 ms
99,840 KB
testcase_25 AC 334 ms
97,024 KB
testcase_26 AC 387 ms
101,632 KB
testcase_27 AC 352 ms
99,840 KB
testcase_28 AC 305 ms
97,792 KB
testcase_29 AC 285 ms
97,408 KB
testcase_30 AC 242 ms
92,928 KB
testcase_31 AC 334 ms
101,504 KB
testcase_32 AC 331 ms
101,888 KB
testcase_33 AC 370 ms
101,888 KB
testcase_34 AC 348 ms
101,632 KB
testcase_35 AC 337 ms
101,888 KB
testcase_36 AC 347 ms
101,888 KB
testcase_37 AC 341 ms
101,888 KB
testcase_38 AC 373 ms
101,504 KB
testcase_39 AC 367 ms
101,632 KB
testcase_40 AC 410 ms
101,888 KB
testcase_41 AC 371 ms
101,504 KB
testcase_42 AC 394 ms
102,016 KB
testcase_43 AC 386 ms
102,144 KB
testcase_44 AC 360 ms
102,016 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())
S=[[0]*16 for i in range(n)]
mx=[-10**18]*16
mn=[10**18]*16
for i in range(n):
  A=list(map(int,input().split()))
  for j in range(16):
    res=0
    for s,k in zip(sgns[j],A):
      res+=s*k
    S[i][j]=res
    mx[j]=max(mx[j],S[i][j])
    mn[j]=min(mn[j],S[i][j])

ans=[0]*n
for i in range(n):
  for j in range(16):
    ans[i]=max(ans[i],mx[j]-S[i][j],S[i][j]-mn[j])

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