結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,620 KB
testcase_01 AC 38 ms
52,868 KB
testcase_02 AC 37 ms
52,508 KB
testcase_03 AC 36 ms
53,332 KB
testcase_04 AC 37 ms
53,816 KB
testcase_05 AC 38 ms
53,280 KB
testcase_06 AC 38 ms
53,592 KB
testcase_07 AC 38 ms
52,764 KB
testcase_08 AC 38 ms
53,316 KB
testcase_09 AC 37 ms
52,816 KB
testcase_10 AC 51 ms
64,452 KB
testcase_11 AC 54 ms
64,824 KB
testcase_12 AC 51 ms
63,948 KB
testcase_13 AC 50 ms
62,852 KB
testcase_14 AC 54 ms
65,628 KB
testcase_15 AC 50 ms
63,712 KB
testcase_16 AC 50 ms
62,912 KB
testcase_17 AC 86 ms
78,200 KB
testcase_18 AC 83 ms
78,068 KB
testcase_19 AC 84 ms
77,804 KB
testcase_20 AC 83 ms
77,956 KB
testcase_21 AC 84 ms
78,272 KB
testcase_22 AC 82 ms
78,280 KB
testcase_23 AC 84 ms
78,436 KB
testcase_24 AC 430 ms
128,664 KB
testcase_25 AC 375 ms
120,288 KB
testcase_26 AC 448 ms
131,760 KB
testcase_27 AC 428 ms
128,500 KB
testcase_28 AC 390 ms
123,596 KB
testcase_29 AC 359 ms
122,912 KB
testcase_30 AC 287 ms
112,348 KB
testcase_31 AC 414 ms
133,388 KB
testcase_32 AC 452 ms
133,088 KB
testcase_33 AC 417 ms
133,436 KB
testcase_34 AC 455 ms
133,036 KB
testcase_35 AC 422 ms
133,352 KB
testcase_36 AC 421 ms
133,112 KB
testcase_37 AC 418 ms
133,080 KB
testcase_38 AC 456 ms
132,420 KB
testcase_39 AC 453 ms
132,168 KB
testcase_40 AC 474 ms
132,584 KB
testcase_41 AC 457 ms
132,576 KB
testcase_42 AC 457 ms
132,404 KB
testcase_43 AC 456 ms
132,496 KB
testcase_44 AC 448 ms
132,044 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)
  
from itertools import product
C= list(product([-1,1], repeat=5))
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