結果

問題 No.2261 Coffee
ユーザー timitimi
提出日時 2024-02-18 16:22:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 133,456 KB
最終ジャッジ日時 2024-09-29 00:43:00
合計ジャッジ時間 12,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,728 KB
testcase_01 AC 30 ms
53,576 KB
testcase_02 AC 32 ms
52,740 KB
testcase_03 AC 31 ms
52,884 KB
testcase_04 AC 31 ms
53,484 KB
testcase_05 AC 32 ms
53,552 KB
testcase_06 AC 32 ms
54,204 KB
testcase_07 AC 32 ms
53,324 KB
testcase_08 AC 33 ms
54,296 KB
testcase_09 AC 31 ms
53,424 KB
testcase_10 AC 43 ms
65,252 KB
testcase_11 AC 46 ms
64,988 KB
testcase_12 AC 43 ms
64,612 KB
testcase_13 AC 44 ms
63,384 KB
testcase_14 AC 47 ms
65,360 KB
testcase_15 AC 44 ms
63,356 KB
testcase_16 AC 43 ms
63,968 KB
testcase_17 AC 74 ms
78,204 KB
testcase_18 AC 72 ms
77,792 KB
testcase_19 AC 72 ms
77,964 KB
testcase_20 AC 71 ms
77,760 KB
testcase_21 AC 73 ms
78,324 KB
testcase_22 AC 72 ms
77,996 KB
testcase_23 AC 72 ms
78,260 KB
testcase_24 AC 364 ms
128,616 KB
testcase_25 AC 313 ms
120,420 KB
testcase_26 AC 379 ms
131,940 KB
testcase_27 AC 357 ms
128,492 KB
testcase_28 AC 295 ms
123,516 KB
testcase_29 AC 289 ms
122,480 KB
testcase_30 AC 246 ms
111,884 KB
testcase_31 AC 341 ms
133,272 KB
testcase_32 AC 371 ms
133,248 KB
testcase_33 AC 344 ms
133,444 KB
testcase_34 AC 365 ms
133,344 KB
testcase_35 AC 373 ms
133,220 KB
testcase_36 AC 380 ms
133,224 KB
testcase_37 AC 361 ms
133,456 KB
testcase_38 AC 391 ms
132,148 KB
testcase_39 AC 423 ms
132,276 KB
testcase_40 AC 397 ms
132,672 KB
testcase_41 AC 387 ms
132,464 KB
testcase_42 AC 380 ms
132,620 KB
testcase_43 AC 387 ms
132,624 KB
testcase_44 AC 388 ms
132,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#N,L,R=map(int, input().split())
#A=list(map(int, input().split()))
N=int(input())
C=[];D={}
for j in range(2**5):
  B=[];D[j]=[]
  for k in range(5):
    if j%2==1:
      B.append(1)
    else:
      B.append(-1)
    j//=2 
  C.append(B)
  
A=[];T=[[]for i in range(N)];D=[[]for i in range(32)]
for i in range(N):
  a,b,c,d,e=map(int, input().split())
  A.append((a,b,c,d,e))
  for now in range(32):
    x,y,z,w,v=C[now]
    cc=a*x+b*y+c*z+d*w+e*v
    T[i].append(cc)
    if i==0:
      D[now].append(cc)
      D[now].append(cc)
    else:
      D[now][0]=max(D[now][0],cc)
      D[now][1]=min(D[now][1],cc)
      
for i in range(N):
  ans=[]
  for j in range(32):
    d=abs(D[j][0]-T[i][j]);e=abs(D[j][1]-T[i][j])
    ans.append(d)
    ans.append(e)
  print(max(ans))
0