結果

問題 No.2509 Beam Shateki
ユーザー yupoohyupooh
提出日時 2023-10-20 21:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,990 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,064 KB
最終ジャッジ日時 2024-09-20 18:51:45
合計ジャッジ時間 55,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,440 KB
testcase_01 AC 43 ms
59,648 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 321 ms
76,340 KB
testcase_04 AC 316 ms
76,344 KB
testcase_05 AC 327 ms
76,272 KB
testcase_06 AC 315 ms
76,136 KB
testcase_07 AC 315 ms
76,556 KB
testcase_08 AC 322 ms
76,392 KB
testcase_09 AC 315 ms
76,268 KB
testcase_10 AC 319 ms
76,724 KB
testcase_11 AC 324 ms
76,420 KB
testcase_12 AC 325 ms
76,348 KB
testcase_13 AC 1,951 ms
78,064 KB
testcase_14 AC 1,928 ms
77,488 KB
testcase_15 AC 1,958 ms
77,284 KB
testcase_16 AC 1,933 ms
77,872 KB
testcase_17 AC 1,961 ms
77,612 KB
testcase_18 AC 1,946 ms
77,540 KB
testcase_19 AC 1,990 ms
77,924 KB
testcase_20 AC 1,981 ms
77,868 KB
testcase_21 AC 1,939 ms
77,480 KB
testcase_22 AC 1,958 ms
77,484 KB
testcase_23 AC 1,946 ms
77,612 KB
testcase_24 AC 1,933 ms
77,612 KB
testcase_25 AC 1,944 ms
77,688 KB
testcase_26 AC 1,972 ms
77,740 KB
testcase_27 AC 1,940 ms
77,484 KB
testcase_28 AC 1,930 ms
77,868 KB
testcase_29 AC 1,926 ms
77,480 KB
testcase_30 AC 1,949 ms
77,428 KB
testcase_31 AC 1,965 ms
77,484 KB
testcase_32 AC 1,906 ms
77,952 KB
testcase_33 AC 127 ms
75,964 KB
testcase_34 AC 492 ms
76,736 KB
testcase_35 AC 941 ms
76,704 KB
testcase_36 AC 266 ms
76,452 KB
testcase_37 AC 92 ms
76,156 KB
testcase_38 AC 277 ms
76,232 KB
testcase_39 AC 252 ms
76,436 KB
testcase_40 AC 590 ms
76,708 KB
testcase_41 AC 77 ms
76,416 KB
testcase_42 AC 302 ms
76,360 KB
testcase_43 AC 1,141 ms
76,800 KB
testcase_44 AC 1,383 ms
77,180 KB
testcase_45 AC 248 ms
76,168 KB
testcase_46 AC 390 ms
76,456 KB
testcase_47 AC 1,369 ms
76,800 KB
testcase_48 AC 420 ms
76,432 KB
testcase_49 AC 669 ms
76,964 KB
testcase_50 AC 809 ms
76,800 KB
testcase_51 AC 117 ms
76,128 KB
testcase_52 AC 516 ms
76,076 KB
testcase_53 AC 53 ms
65,152 KB
testcase_54 AC 52 ms
64,384 KB
testcase_55 AC 56 ms
67,456 KB
testcase_56 AC 54 ms
67,072 KB
testcase_57 AC 53 ms
67,456 KB
testcase_58 AC 54 ms
66,944 KB
testcase_59 AC 54 ms
66,560 KB
testcase_60 AC 56 ms
66,816 KB
testcase_61 AC 56 ms
66,688 KB
testcase_62 AC 57 ms
66,688 KB
testcase_63 AC 56 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
h,w=map(int,input().split())
A=[list(map(int,input().split())) for _ in range(h)]
d=[(-1,-1),(0,-1),(1,-1),(1,0),(1,1)]
ans=0
l=[]
for i in range(w+1):
  l.append((0,i))
for i in range(h+1):
  l.append((i,w+1))
for i,j in l:
  for ii,jj in l:
    for dx,dy in d:
      for ddx,ddy in d:
        se=set()
        if not(1<=i+dx<=h) or not(1<=j+dy<=w) or not(1<=ii+ddx<=h) or not(1<=jj+ddy<=w):
          continue
        nowi=i+dx
        nowj=j+dy
        tmp=0
        cnt=0
        while 1<=nowi<=h and 1<=nowj<=w:
          cnt+=1
          tmp+=A[nowi-1][nowj-1]
          se.add(nowi*200+nowj)
          nowi+=dx
          nowj+=dy
        if cnt==0:
          continue
        nowi=ii+ddx
        nowj=jj+ddy
        while 1<=nowi<=h and 1<=nowj<=w:
          if nowi*200+nowj not in se:
            tmp+=A[nowi-1][nowj-1]
          se.add(nowi*200+nowj)
          nowi+=ddx
          nowj+=ddy  
        ans=max(ans,tmp)
print(ans)
0