結果

問題 No.2509 Beam Shateki
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-10-20 21:39:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,585 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,576 KB
最終ジャッジ日時 2024-09-20 17:45:49
合計ジャッジ時間 23,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,400 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 199 ms
78,056 KB
testcase_04 AC 201 ms
78,216 KB
testcase_05 AC 193 ms
78,560 KB
testcase_06 AC 192 ms
78,312 KB
testcase_07 AC 195 ms
78,056 KB
testcase_08 AC 195 ms
78,060 KB
testcase_09 AC 199 ms
78,056 KB
testcase_10 AC 193 ms
78,312 KB
testcase_11 AC 191 ms
78,064 KB
testcase_12 AC 193 ms
78,564 KB
testcase_13 AC 708 ms
86,272 KB
testcase_14 AC 708 ms
86,400 KB
testcase_15 AC 682 ms
86,144 KB
testcase_16 AC 686 ms
86,576 KB
testcase_17 AC 679 ms
86,144 KB
testcase_18 AC 686 ms
86,400 KB
testcase_19 AC 689 ms
86,016 KB
testcase_20 AC 670 ms
86,272 KB
testcase_21 AC 685 ms
86,400 KB
testcase_22 AC 672 ms
86,400 KB
testcase_23 AC 684 ms
86,272 KB
testcase_24 AC 692 ms
86,272 KB
testcase_25 AC 742 ms
86,400 KB
testcase_26 AC 687 ms
86,400 KB
testcase_27 AC 683 ms
86,400 KB
testcase_28 AC 685 ms
86,144 KB
testcase_29 AC 679 ms
86,400 KB
testcase_30 AC 673 ms
86,144 KB
testcase_31 WA -
testcase_32 AC 683 ms
86,272 KB
testcase_33 AC 108 ms
76,544 KB
testcase_34 AC 251 ms
78,008 KB
testcase_35 AC 392 ms
81,384 KB
testcase_36 AC 171 ms
77,676 KB
testcase_37 AC 97 ms
77,608 KB
testcase_38 AC 170 ms
77,940 KB
testcase_39 AC 186 ms
78,352 KB
testcase_40 AC 285 ms
79,464 KB
testcase_41 AC 77 ms
72,448 KB
testcase_42 AC 210 ms
77,768 KB
testcase_43 AC 459 ms
81,536 KB
testcase_44 AC 531 ms
83,584 KB
testcase_45 AC 167 ms
77,836 KB
testcase_46 AC 212 ms
77,916 KB
testcase_47 AC 534 ms
82,432 KB
testcase_48 AC 229 ms
78,408 KB
testcase_49 AC 320 ms
78,624 KB
testcase_50 AC 348 ms
80,076 KB
testcase_51 AC 118 ms
76,812 KB
testcase_52 AC 270 ms
79,156 KB
testcase_53 AC 46 ms
55,168 KB
testcase_54 AC 46 ms
55,168 KB
testcase_55 AC 53 ms
61,312 KB
testcase_56 AC 53 ms
61,312 KB
testcase_57 AC 54 ms
60,800 KB
testcase_58 WA -
testcase_59 AC 51 ms
60,800 KB
testcase_60 WA -
testcase_61 AC 51 ms
61,440 KB
testcase_62 WA -
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
deg=[(0,1),(1,0),(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