結果

問題 No.2261 Coffee
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 14:39:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 350 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,152 KB
最終ジャッジ日時 2024-09-14 14:39:36
合計ジャッジ時間 11,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
66,048 KB
testcase_01 AC 57 ms
62,080 KB
testcase_02 AC 52 ms
60,672 KB
testcase_03 AC 57 ms
60,672 KB
testcase_04 AC 55 ms
61,824 KB
testcase_05 AC 58 ms
62,720 KB
testcase_06 AC 59 ms
63,488 KB
testcase_07 AC 54 ms
61,440 KB
testcase_08 AC 59 ms
63,232 KB
testcase_09 AC 56 ms
62,336 KB
testcase_10 AC 112 ms
77,312 KB
testcase_11 AC 115 ms
77,184 KB
testcase_12 AC 106 ms
77,184 KB
testcase_13 AC 105 ms
77,312 KB
testcase_14 AC 117 ms
77,440 KB
testcase_15 AC 102 ms
77,312 KB
testcase_16 AC 108 ms
77,568 KB
testcase_17 AC 279 ms
79,552 KB
testcase_18 AC 275 ms
79,564 KB
testcase_19 AC 272 ms
79,800 KB
testcase_20 AC 255 ms
78,508 KB
testcase_21 AC 323 ms
79,544 KB
testcase_22 AC 258 ms
78,524 KB
testcase_23 AC 299 ms
79,540 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

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):
  M=-X
  m=X
  for i in range(n):
    M=max(M,f(i,k))
    m=min(m,f(i,k))
  for i in range(n):
    ans[i]=max(ans[i],M-f(i,k))
    ans[i]=max(ans[i],f(i,k)-m)
print(*ans,sep="\n")
0