結果

問題 No.2509 Beam Shateki
ユーザー yupoohyupooh
提出日時 2023-10-20 21:54:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 996 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 78,136 KB
最終ジャッジ日時 2024-09-20 18:42:15
合計ジャッジ時間 55,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
65,604 KB
testcase_01 AC 47 ms
63,416 KB
testcase_02 AC 33 ms
53,016 KB
testcase_03 AC 343 ms
77,024 KB
testcase_04 AC 344 ms
76,652 KB
testcase_05 AC 337 ms
76,772 KB
testcase_06 AC 350 ms
77,092 KB
testcase_07 AC 355 ms
76,652 KB
testcase_08 AC 341 ms
76,424 KB
testcase_09 AC 357 ms
76,796 KB
testcase_10 AC 347 ms
76,540 KB
testcase_11 AC 347 ms
76,656 KB
testcase_12 AC 350 ms
76,644 KB
testcase_13 AC 1,887 ms
78,136 KB
testcase_14 AC 1,914 ms
77,384 KB
testcase_15 AC 1,924 ms
77,820 KB
testcase_16 AC 1,913 ms
77,456 KB
testcase_17 AC 1,950 ms
77,876 KB
testcase_18 AC 1,941 ms
77,328 KB
testcase_19 AC 1,937 ms
77,608 KB
testcase_20 AC 1,941 ms
77,864 KB
testcase_21 AC 1,895 ms
77,764 KB
testcase_22 AC 1,946 ms
77,720 KB
testcase_23 AC 1,928 ms
77,268 KB
testcase_24 AC 1,882 ms
78,104 KB
testcase_25 TLE -
testcase_26 AC 1,916 ms
77,552 KB
testcase_27 AC 1,906 ms
78,064 KB
testcase_28 AC 1,909 ms
77,864 KB
testcase_29 AC 1,893 ms
77,648 KB
testcase_30 AC 1,912 ms
78,064 KB
testcase_31 AC 1,959 ms
78,072 KB
testcase_32 AC 1,939 ms
77,620 KB
testcase_33 AC 134 ms
76,272 KB
testcase_34 AC 520 ms
77,104 KB
testcase_35 AC 997 ms
77,156 KB
testcase_36 AC 276 ms
76,472 KB
testcase_37 AC 98 ms
76,472 KB
testcase_38 AC 292 ms
76,424 KB
testcase_39 AC 254 ms
76,588 KB
testcase_40 AC 602 ms
77,272 KB
testcase_41 AC 83 ms
76,160 KB
testcase_42 AC 331 ms
76,812 KB
testcase_43 AC 1,187 ms
76,856 KB
testcase_44 AC 1,401 ms
77,444 KB
testcase_45 AC 257 ms
76,604 KB
testcase_46 AC 386 ms
76,644 KB
testcase_47 AC 1,366 ms
76,792 KB
testcase_48 AC 473 ms
76,488 KB
testcase_49 AC 660 ms
77,236 KB
testcase_50 AC 810 ms
76,860 KB
testcase_51 AC 124 ms
76,720 KB
testcase_52 AC 571 ms
77,280 KB
testcase_53 AC 60 ms
69,160 KB
testcase_54 AC 58 ms
69,028 KB
testcase_55 AC 60 ms
69,384 KB
testcase_56 AC 61 ms
70,584 KB
testcase_57 AC 62 ms
69,136 KB
testcase_58 AC 61 ms
70,940 KB
testcase_59 AC 60 ms
70,072 KB
testcase_60 AC 59 ms
70,340 KB
testcase_61 AC 61 ms
71,004 KB
testcase_62 AC 63 ms
69,284 KB
testcase_63 AC 61 ms
69,736 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),(-1,0),(-1,1),(0,-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