結果

問題 No.2509 Beam Shateki
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-10-20 21:40:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,600 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 88,060 KB
最終ジャッジ日時 2023-10-20 21:41:05
合計ジャッジ時間 29,374 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,692 KB
testcase_01 AC 41 ms
55,692 KB
testcase_02 AC 39 ms
55,692 KB
testcase_03 AC 229 ms
77,708 KB
testcase_04 AC 221 ms
77,716 KB
testcase_05 AC 223 ms
77,716 KB
testcase_06 AC 224 ms
77,712 KB
testcase_07 AC 248 ms
77,724 KB
testcase_08 AC 221 ms
77,712 KB
testcase_09 AC 218 ms
77,724 KB
testcase_10 AC 219 ms
77,712 KB
testcase_11 AC 227 ms
77,720 KB
testcase_12 AC 225 ms
77,720 KB
testcase_13 AC 881 ms
88,040 KB
testcase_14 AC 858 ms
88,044 KB
testcase_15 AC 856 ms
87,960 KB
testcase_16 AC 880 ms
88,060 KB
testcase_17 AC 865 ms
87,776 KB
testcase_18 AC 898 ms
87,808 KB
testcase_19 AC 865 ms
87,956 KB
testcase_20 AC 906 ms
87,812 KB
testcase_21 AC 860 ms
87,952 KB
testcase_22 AC 895 ms
87,780 KB
testcase_23 AC 847 ms
87,760 KB
testcase_24 AC 902 ms
87,896 KB
testcase_25 AC 871 ms
87,960 KB
testcase_26 AC 841 ms
88,052 KB
testcase_27 AC 874 ms
87,968 KB
testcase_28 AC 879 ms
87,572 KB
testcase_29 AC 894 ms
87,968 KB
testcase_30 AC 870 ms
87,952 KB
testcase_31 WA -
testcase_32 AC 854 ms
87,880 KB
testcase_33 AC 113 ms
76,676 KB
testcase_34 AC 284 ms
78,220 KB
testcase_35 AC 511 ms
81,064 KB
testcase_36 AC 180 ms
77,468 KB
testcase_37 AC 96 ms
76,636 KB
testcase_38 AC 198 ms
77,636 KB
testcase_39 AC 178 ms
78,212 KB
testcase_40 AC 342 ms
78,828 KB
testcase_41 AC 83 ms
76,716 KB
testcase_42 AC 216 ms
77,452 KB
testcase_43 AC 599 ms
82,648 KB
testcase_44 AC 658 ms
83,556 KB
testcase_45 AC 178 ms
77,736 KB
testcase_46 AC 224 ms
77,732 KB
testcase_47 AC 672 ms
83,572 KB
testcase_48 AC 287 ms
77,792 KB
testcase_49 AC 371 ms
78,736 KB
testcase_50 AC 435 ms
80,776 KB
testcase_51 AC 116 ms
76,976 KB
testcase_52 AC 313 ms
78,372 KB
testcase_53 AC 48 ms
61,508 KB
testcase_54 AC 50 ms
61,508 KB
testcase_55 AC 54 ms
63,892 KB
testcase_56 AC 52 ms
63,892 KB
testcase_57 AC 51 ms
63,892 KB
testcase_58 WA -
testcase_59 AC 52 ms
63,892 KB
testcase_60 WA -
testcase_61 AC 57 ms
63,892 KB
testcase_62 WA -
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
deg=[(0,1),(1,0),(1,1),(-1,1),(1,-1),(-1,-1)]
H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]
beam=[]
for i in range(W+1):
    for xd,yd in deg:
        x=i
        y=0
        x+=xd
        y+=yd
        now=0
        while 1<=x<=W and 1<=y<=H:
            now+=A[y-1][x-1]
            x+=xd
            y+=yd
        if now!=0:
            beam.append((now,i,0,xd,yd))
for i in range(H+1):
    for xd,yd in deg:
        x=0
        y=i
        x+=xd
        y+=yd
        now=0
        while 1<=x<=W and 1<=y<=H:
            now+=A[y-1][x-1]
            x+=xd
            y+=yd
        if now!=0:
            beam.append((now,0,i,xd,yd))
ap=deepcopy(A)
beam.sort(reverse=True)
ans1=0
for p in range(len(beam)):
    A=deepcopy(ap)
    x=beam[p][1]
    y=beam[p][2]
    xd=beam[p][3]
    yd=beam[p][4]
    x+=xd
    y+=yd
    ans=beam[p][0]
    while 1<=x<=W and 1<=y<=H:
        A[y-1][x-1]=0
        x+=xd
        y+=yd
    maxi=0
    for i in range(W+1):
        for xd,yd in deg:
            x=i
            y=0
            x+=xd
            y+=yd
            now=0
            while 1<=x<=W and 1<=y<=H:
                now+=A[y-1][x-1]
                x+=xd
                y+=yd
            maxi=max(maxi,now)
    for i in range(H+1):
        for xd,yd in deg:
            x=0
            y=i
            x+=xd
            y+=yd
            now=0
            while 1<=x<=W and 1<=y<=H:
                now+=A[y-1][x-1]
                x+=xd
                y+=yd
            maxi=max(maxi,now)
    ans1=max(ans1,ans+maxi)
print(ans1)
0