結果

問題 No.2509 Beam Shateki
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-10-20 23:07:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,476 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 81,748 KB
最終ジャッジ日時 2023-10-20 23:08:05
合計ジャッジ時間 11,075 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,588 KB
testcase_01 AC 37 ms
53,588 KB
testcase_02 AC 36 ms
53,588 KB
testcase_03 AC 167 ms
78,148 KB
testcase_04 AC 151 ms
78,144 KB
testcase_05 AC 140 ms
78,144 KB
testcase_06 AC 142 ms
78,144 KB
testcase_07 AC 144 ms
78,148 KB
testcase_08 AC 150 ms
78,148 KB
testcase_09 AC 151 ms
78,148 KB
testcase_10 WA -
testcase_11 AC 143 ms
78,148 KB
testcase_12 AC 144 ms
78,144 KB
testcase_13 AC 214 ms
81,740 KB
testcase_14 AC 188 ms
81,740 KB
testcase_15 AC 194 ms
81,744 KB
testcase_16 AC 213 ms
81,744 KB
testcase_17 AC 235 ms
81,744 KB
testcase_18 AC 192 ms
81,748 KB
testcase_19 AC 190 ms
81,740 KB
testcase_20 WA -
testcase_21 AC 195 ms
81,744 KB
testcase_22 AC 189 ms
81,740 KB
testcase_23 AC 195 ms
81,744 KB
testcase_24 AC 200 ms
81,744 KB
testcase_25 AC 199 ms
81,744 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 220 ms
81,740 KB
testcase_29 AC 208 ms
81,740 KB
testcase_30 AC 197 ms
81,744 KB
testcase_31 AC 194 ms
81,744 KB
testcase_32 AC 194 ms
81,744 KB
testcase_33 AC 110 ms
76,876 KB
testcase_34 AC 178 ms
79,024 KB
testcase_35 AC 172 ms
80,028 KB
testcase_36 AC 142 ms
77,764 KB
testcase_37 AC 36 ms
53,588 KB
testcase_38 AC 144 ms
78,184 KB
testcase_39 AC 142 ms
77,740 KB
testcase_40 AC 165 ms
79,316 KB
testcase_41 AC 75 ms
74,092 KB
testcase_42 AC 147 ms
78,432 KB
testcase_43 AC 201 ms
80,252 KB
testcase_44 AC 185 ms
81,036 KB
testcase_45 AC 143 ms
77,828 KB
testcase_46 AC 158 ms
78,460 KB
testcase_47 AC 194 ms
80,836 KB
testcase_48 AC 157 ms
79,020 KB
testcase_49 AC 171 ms
79,608 KB
testcase_50 AC 182 ms
79,608 KB
testcase_51 AC 106 ms
76,736 KB
testcase_52 AC 160 ms
79,268 KB
testcase_53 AC 44 ms
58,940 KB
testcase_54 AC 43 ms
58,940 KB
testcase_55 AC 48 ms
61,320 KB
testcase_56 AC 46 ms
61,320 KB
testcase_57 WA -
testcase_58 AC 47 ms
61,320 KB
testcase_59 AC 45 ms
61,320 KB
testcase_60 AC 45 ms
61,320 KB
testcase_61 AC 47 ms
61,320 KB
testcase_62 WA -
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
a=[list(map(int,input().split())) for i in range(h)]
if h<=2 or w<=2:
  g=0
  for i in range(h):
    for j in range(w):
      g+=a[i][j]
  print(g)
  exit()
g=0
for hanten1 in range(2):
  for hanten2 in range(2):
    for kaiten in range(4):
      A=[[0]*(h-1+w+h-1) for i in range(h)]
      for i in range(h):
        for j in range(w):
          A[i][j+h-1]=a[i][j]
      b1=[[0]*(h-1+w+h-1) for i in range(h)]
      for i in range(h):
        b1[i][h-1+w-1+i]=sum(A[i])
      for i in range(h):
        for j in reversed(range(i,i+h-1+w-1)):
          b1[i][j]=b1[i][j+1]
      b2=[[0]*(h-1+w+h-1) for i in range(h)]
      for j in range(h-1,h-1+w+h-1):
        b2[h-1][j]=sum(A[h-1-i][j-i] for i in range(h))
      for i in reversed(range(h-1)):
        for j in range(i,i+w+h-1):
          b2[i][j]=b2[i+1][j+1]
      g=max(g,sum((sorted([b1[i][h-1+w-1+i] for i in range(h)]))[::-1][:2]))
      g=max(g,sum((sorted([b2[h-1][h-1+i] for i in range(h+w-1)]))[::-1][:2]))
      for i in range(h):
        for j in range(i,i+h-1+w):
          g=max(g,b1[i][j]+b2[i][j]-A[i][j])
      na=[[0]*h for i in range(w)]
      for i in range(h):
        for j in range(w):
          na[~j][i]=a[i][j]
      h,w=w,h
      a=na
    na=[[0]*w for i in range(h)]
    for i in range(h):
      for j in range(w):
        na[i][~j]=a[i][j]
    a=na
  na=[[0]*w for i in range(h)]
  for i in range(h):
    for j in range(w):
      na[~i][j]=a[i][j]
  a=na
print(g)
0