結果

問題 No.2509 Beam Shateki
ユーザー navel_tosnavel_tos
提出日時 2023-10-20 21:48:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 1,289 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-09-20 18:14:23
合計ジャッジ時間 20,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,240 KB
testcase_01 AC 41 ms
54,372 KB
testcase_02 AC 38 ms
55,372 KB
testcase_03 AC 148 ms
77,040 KB
testcase_04 AC 151 ms
77,112 KB
testcase_05 AC 151 ms
76,940 KB
testcase_06 AC 160 ms
77,264 KB
testcase_07 AC 154 ms
77,076 KB
testcase_08 AC 162 ms
77,332 KB
testcase_09 AC 153 ms
76,972 KB
testcase_10 AC 160 ms
77,008 KB
testcase_11 AC 154 ms
77,116 KB
testcase_12 AC 156 ms
77,196 KB
testcase_13 AC 606 ms
77,024 KB
testcase_14 AC 593 ms
77,180 KB
testcase_15 AC 610 ms
77,344 KB
testcase_16 AC 708 ms
77,244 KB
testcase_17 AC 599 ms
77,688 KB
testcase_18 AC 598 ms
77,376 KB
testcase_19 AC 600 ms
77,264 KB
testcase_20 AC 593 ms
77,244 KB
testcase_21 AC 625 ms
77,084 KB
testcase_22 AC 590 ms
77,120 KB
testcase_23 AC 622 ms
77,364 KB
testcase_24 AC 605 ms
77,160 KB
testcase_25 AC 599 ms
77,512 KB
testcase_26 AC 603 ms
77,160 KB
testcase_27 AC 598 ms
77,168 KB
testcase_28 AC 600 ms
77,092 KB
testcase_29 AC 603 ms
77,228 KB
testcase_30 AC 601 ms
77,140 KB
testcase_31 AC 611 ms
77,368 KB
testcase_32 AC 600 ms
77,320 KB
testcase_33 AC 96 ms
76,560 KB
testcase_34 AC 199 ms
77,640 KB
testcase_35 AC 340 ms
77,484 KB
testcase_36 AC 139 ms
76,988 KB
testcase_37 AC 72 ms
75,152 KB
testcase_38 AC 141 ms
76,836 KB
testcase_39 AC 142 ms
77,180 KB
testcase_40 AC 226 ms
77,292 KB
testcase_41 AC 66 ms
74,228 KB
testcase_42 AC 161 ms
77,028 KB
testcase_43 AC 405 ms
77,188 KB
testcase_44 AC 458 ms
76,964 KB
testcase_45 AC 135 ms
76,896 KB
testcase_46 AC 177 ms
76,872 KB
testcase_47 AC 448 ms
77,164 KB
testcase_48 AC 184 ms
76,980 KB
testcase_49 AC 268 ms
77,040 KB
testcase_50 AC 298 ms
77,188 KB
testcase_51 AC 87 ms
76,676 KB
testcase_52 AC 218 ms
77,200 KB
testcase_53 AC 44 ms
61,876 KB
testcase_54 AC 45 ms
62,384 KB
testcase_55 AC 46 ms
64,112 KB
testcase_56 AC 46 ms
63,320 KB
testcase_57 AC 48 ms
63,260 KB
testcase_58 AC 48 ms
63,340 KB
testcase_59 AC 49 ms
63,984 KB
testcase_60 AC 49 ms
63,176 KB
testcase_61 AC 47 ms
63,192 KB
testcase_62 AC 49 ms
63,716 KB
testcase_63 AC 50 ms
64,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder409B

from collections import deque as dq

#入力受取
H,W=map(int,input().split())
A=[[0]*(W+3)]+[[0]+list(map(int,input().split()))+[0]*2 for _ in range(H)]+[[0]*(W+3)]*2

#biimは4方向(テンキー1236方向)にのみ撃てればOK 撃つべき位置を列挙
check=[(h,w) for h in range(H+2) for w in range(W+2) if h in set([0,H+1]) or w in set([0,W+1])]
way=[(-1,-1),(0,-1),(1,-1),(1,0)]

#実際に撃ってみる 処理は「0のマスに侵入したら終了」
ans=0
for i in range(len(check)):  #初発
    sx,sy=check[i]
    for x in range(4):  #方向
        visited=set(); cnt=0; wx,wy=way[x]; nx,ny=sx,sy
        while 1:
            nx,ny=nx+wx,ny+wy
            if A[nx][ny]==0: break
            visited.add((nx,ny)); cnt+=A[nx][ny]
        #変な方向にbiimしていたら打ち切り
        if len(visited)==0: continue

        for j in range(i,len(check)):  #次発
            tx,ty=check[j]
            for y in range(4):
                xx,xy=way[y]; mx,my=tx,ty; cnt2=0
                while 1:
                    mx,my=mx+xx,my+xy
                    if A[mx][my]==0: break
                    if (mx,my) in visited: continue
                    cnt2+=A[mx][my]
                #答えを更新
                ans=max(ans,cnt+cnt2)
print(ans)
0