結果

問題 No.2509 Beam Shateki
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-08-18 22:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,596 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 78,236 KB
最終ジャッジ日時 2024-06-24 16:28:29
合計ジャッジ時間 45,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,044 KB
testcase_01 AC 57 ms
61,760 KB
testcase_02 AC 41 ms
53,660 KB
testcase_03 AC 257 ms
76,180 KB
testcase_04 AC 256 ms
76,372 KB
testcase_05 AC 257 ms
76,300 KB
testcase_06 AC 257 ms
76,488 KB
testcase_07 AC 258 ms
76,344 KB
testcase_08 AC 259 ms
76,300 KB
testcase_09 AC 260 ms
76,524 KB
testcase_10 AC 256 ms
76,760 KB
testcase_11 AC 257 ms
76,524 KB
testcase_12 AC 261 ms
76,460 KB
testcase_13 AC 1,585 ms
78,236 KB
testcase_14 AC 1,583 ms
78,148 KB
testcase_15 AC 1,584 ms
77,952 KB
testcase_16 AC 1,580 ms
78,156 KB
testcase_17 AC 1,576 ms
78,048 KB
testcase_18 AC 1,585 ms
78,040 KB
testcase_19 AC 1,578 ms
78,032 KB
testcase_20 AC 1,581 ms
78,068 KB
testcase_21 AC 1,581 ms
77,876 KB
testcase_22 AC 1,584 ms
78,140 KB
testcase_23 AC 1,576 ms
78,076 KB
testcase_24 AC 1,576 ms
78,136 KB
testcase_25 AC 1,574 ms
78,168 KB
testcase_26 AC 1,596 ms
77,948 KB
testcase_27 AC 1,585 ms
77,936 KB
testcase_28 AC 1,595 ms
78,004 KB
testcase_29 AC 1,581 ms
78,140 KB
testcase_30 AC 1,576 ms
78,108 KB
testcase_31 AC 1,576 ms
77,820 KB
testcase_32 AC 1,583 ms
78,028 KB
testcase_33 AC 89 ms
76,132 KB
testcase_34 AC 416 ms
76,500 KB
testcase_35 AC 759 ms
77,192 KB
testcase_36 AC 199 ms
76,048 KB
testcase_37 AC 66 ms
73,124 KB
testcase_38 AC 219 ms
76,204 KB
testcase_39 AC 183 ms
76,044 KB
testcase_40 AC 490 ms
76,796 KB
testcase_41 AC 59 ms
66,588 KB
testcase_42 AC 235 ms
76,396 KB
testcase_43 AC 918 ms
77,724 KB
testcase_44 AC 1,134 ms
77,580 KB
testcase_45 AC 180 ms
76,292 KB
testcase_46 AC 301 ms
76,504 KB
testcase_47 AC 1,158 ms
77,544 KB
testcase_48 AC 355 ms
76,436 KB
testcase_49 AC 511 ms
76,756 KB
testcase_50 AC 657 ms
77,008 KB
testcase_51 AC 81 ms
73,592 KB
testcase_52 AC 433 ms
76,716 KB
testcase_53 AC 52 ms
63,636 KB
testcase_54 AC 51 ms
63,240 KB
testcase_55 AC 52 ms
63,660 KB
testcase_56 AC 53 ms
64,408 KB
testcase_57 AC 53 ms
64,092 KB
testcase_58 AC 53 ms
63,376 KB
testcase_59 AC 54 ms
63,956 KB
testcase_60 AC 54 ms
62,960 KB
testcase_61 AC 53 ms
63,476 KB
testcase_62 AC 53 ms
64,648 KB
testcase_63 AC 54 ms
65,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def main():
    h,w=read_values()
    a=[]
    for _ in range(h):
        a.append(read_list())
    ans=0
    st=set()
    for i in range(-1,h+1):
        st.add((i,-1))
        st.add((i,w))
    for i in range(-1,w+1):
        st.add((-1,i))
    d=[(0,1),(1,-1),(1,0),(1,1)]
    l=[]
    for fx,fy in st:
        for dx,dy in d:
            tmp=0
            x=fx
            y=fy
            visit=set()
            while True:
                x+=dx
                y+=dy
                if x<0 or y<0 or x>=h or y>=w:
                    break
                if not (x,y) in visit:
                    tmp+=a[x][y]
                visit.add((x,y))
            l.append((tmp,visit))
    for score,visit in l:
        for score2,visit2 in l:
            tmp=score+score2
            for v in visit:
                if v in visit2:
                    tmp-=a[v[0]][v[1]]
            ans=max(ans,tmp)
    print(ans)


if __name__ == "__main__":
    main()
0