結果

問題 No.2261 Coffee
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 14:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,508 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,720 KB
最終ジャッジ日時 2024-09-14 14:41:38
合計ジャッジ時間 35,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 48 ms
58,112 KB
testcase_06 AC 53 ms
60,416 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 51 ms
60,160 KB
testcase_09 AC 47 ms
57,856 KB
testcase_10 AC 81 ms
73,472 KB
testcase_11 AC 90 ms
76,800 KB
testcase_12 AC 75 ms
70,528 KB
testcase_13 AC 73 ms
69,888 KB
testcase_14 AC 80 ms
73,344 KB
testcase_15 AC 71 ms
68,736 KB
testcase_16 AC 72 ms
69,760 KB
testcase_17 AC 185 ms
78,184 KB
testcase_18 AC 187 ms
77,740 KB
testcase_19 AC 182 ms
78,616 KB
testcase_20 AC 174 ms
77,568 KB
testcase_21 AC 186 ms
77,804 KB
testcase_22 AC 175 ms
77,732 KB
testcase_23 AC 187 ms
78,004 KB
testcase_24 AC 1,382 ms
121,216 KB
testcase_25 AC 1,175 ms
115,072 KB
testcase_26 AC 1,464 ms
124,160 KB
testcase_27 AC 1,366 ms
121,216 KB
testcase_28 AC 1,216 ms
117,376 KB
testcase_29 AC 1,237 ms
116,224 KB
testcase_30 AC 1,021 ms
107,392 KB
testcase_31 AC 1,492 ms
126,464 KB
testcase_32 AC 1,506 ms
126,080 KB
testcase_33 AC 1,434 ms
126,336 KB
testcase_34 AC 1,420 ms
125,952 KB
testcase_35 AC 1,474 ms
126,464 KB
testcase_36 AC 1,410 ms
125,824 KB
testcase_37 AC 1,380 ms
126,208 KB
testcase_38 AC 1,422 ms
125,568 KB
testcase_39 AC 1,402 ms
125,952 KB
testcase_40 AC 1,408 ms
126,336 KB
testcase_41 AC 1,436 ms
125,952 KB
testcase_42 AC 1,508 ms
125,696 KB
testcase_43 AC 1,490 ms
126,720 KB
testcase_44 AC 1,493 ms
126,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[list(map(int,input().split())) for i in range(n)]
X=10**20
ans=[-X]*n
f=lambda i,k:sum(p[i][j]*(1-2*((k>>j)&1)) for j in range(5))
for k in range(1<<5):
  q=[f(i,k) for i in range(n)]
  M=max(q)
  m=min(q)
  for i in range(n):
    ans[i]=max(ans[i],M-q[i])
    ans[i]=max(ans[i],q[i]-m)
print(*ans,sep="\n")
0