結果

問題 No.2509 Beam Shateki
ユーザー timitimi
提出日時 2023-10-27 16:53:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 814 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 72,428 KB
最終ジャッジ日時 2024-09-25 13:04:48
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 37 ms
52,808 KB
testcase_02 AC 39 ms
53,576 KB
testcase_03 AC 57 ms
66,112 KB
testcase_04 AC 55 ms
65,604 KB
testcase_05 AC 54 ms
66,584 KB
testcase_06 AC 55 ms
65,356 KB
testcase_07 AC 55 ms
67,092 KB
testcase_08 AC 54 ms
65,884 KB
testcase_09 AC 54 ms
66,576 KB
testcase_10 AC 55 ms
66,332 KB
testcase_11 AC 55 ms
65,800 KB
testcase_12 AC 53 ms
65,868 KB
testcase_13 AC 60 ms
71,300 KB
testcase_14 AC 61 ms
71,856 KB
testcase_15 AC 61 ms
72,428 KB
testcase_16 AC 60 ms
71,124 KB
testcase_17 AC 61 ms
72,116 KB
testcase_18 AC 59 ms
72,128 KB
testcase_19 AC 60 ms
71,732 KB
testcase_20 AC 59 ms
72,416 KB
testcase_21 AC 60 ms
72,220 KB
testcase_22 AC 62 ms
71,988 KB
testcase_23 AC 59 ms
72,244 KB
testcase_24 AC 60 ms
71,744 KB
testcase_25 AC 60 ms
71,204 KB
testcase_26 AC 60 ms
71,364 KB
testcase_27 AC 61 ms
71,612 KB
testcase_28 AC 59 ms
71,540 KB
testcase_29 AC 62 ms
71,580 KB
testcase_30 AC 60 ms
71,544 KB
testcase_31 AC 60 ms
72,084 KB
testcase_32 AC 60 ms
72,056 KB
testcase_33 AC 40 ms
54,796 KB
testcase_34 AC 55 ms
67,124 KB
testcase_35 AC 58 ms
70,428 KB
testcase_36 AC 55 ms
65,424 KB
testcase_37 AC 39 ms
52,828 KB
testcase_38 AC 55 ms
65,668 KB
testcase_39 AC 63 ms
71,664 KB
testcase_40 AC 65 ms
72,220 KB
testcase_41 AC 39 ms
54,124 KB
testcase_42 AC 54 ms
66,624 KB
testcase_43 AC 58 ms
70,732 KB
testcase_44 AC 59 ms
71,892 KB
testcase_45 AC 55 ms
65,548 KB
testcase_46 AC 54 ms
66,772 KB
testcase_47 AC 58 ms
71,100 KB
testcase_48 AC 56 ms
66,844 KB
testcase_49 AC 55 ms
67,464 KB
testcase_50 AC 56 ms
68,532 KB
testcase_51 AC 41 ms
55,472 KB
testcase_52 AC 56 ms
67,868 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 37 ms
53,372 KB
testcase_56 AC 39 ms
53,332 KB
testcase_57 AC 39 ms
52,520 KB
testcase_58 AC 40 ms
53,356 KB
testcase_59 WA -
testcase_60 AC 38 ms
53,424 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 38 ms
52,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[]
B=[];C=[0]*W
D,E={},{}
for i in range(H):
  AA=list(map(int, input().split()))
  for j in range(W):
    C[j]+=AA[j]
    x=i+j
    if x not in D:
      D[x]=0
    y=i-j 
    if y not in E:
      E[y]=0
    D[x]+=AA[j];E[y]+=AA[j]
  A.append(AA)
  B.append(sum(AA))
if H==1 and W==1:
  print(AA[0])
  exit()
  
DD,EE=[],[]
for d in D:
  DD.append(D[d])
for e in E:
  EE.append(E[e])
BB=sorted(B)[::-1];CC=sorted(C)[::-1];DD=sorted(D)[::-1];EE=sorted(E)[::-1]
ans=0
if len(BB)>1:
  ans=max(ans,BB[0]+BB[1])
if len(CC)>1:
  ans=max(ans,CC[0]+CC[1])
if len(DD)>1:
  ans=max(ans,DD[0]+DD[1])
if len(EE)>1:
  ans=max(ans,EE[0]+EE[1])

for h in range(H):
  for w in range(W):
    a=A[h][w]
    CC=[B[h],C[w],D[h+w],E[h-w]]
    CC=sorted(CC)[::-1]
    ans=max(ans,CC[0]+CC[1]-a)
print(ans)
0