結果

問題 No.2509 Beam Shateki
ユーザー miya145592miya145592
提出日時 2023-10-21 00:19:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,511 bytes
コンパイル時間 1,049 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2023-10-21 00:20:10
合計ジャッジ時間 23,321 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,456 KB
testcase_01 AC 38 ms
53,456 KB
testcase_02 AC 40 ms
53,456 KB
testcase_03 AC 178 ms
76,212 KB
testcase_04 AC 175 ms
76,200 KB
testcase_05 AC 175 ms
76,204 KB
testcase_06 AC 174 ms
76,204 KB
testcase_07 AC 178 ms
76,212 KB
testcase_08 AC 178 ms
76,204 KB
testcase_09 AC 176 ms
76,204 KB
testcase_10 AC 175 ms
76,204 KB
testcase_11 AC 178 ms
76,204 KB
testcase_12 AC 176 ms
76,200 KB
testcase_13 AC 676 ms
76,396 KB
testcase_14 AC 640 ms
76,400 KB
testcase_15 AC 673 ms
76,396 KB
testcase_16 AC 644 ms
76,400 KB
testcase_17 AC 671 ms
76,400 KB
testcase_18 AC 641 ms
76,412 KB
testcase_19 AC 667 ms
76,396 KB
testcase_20 AC 643 ms
76,404 KB
testcase_21 WA -
testcase_22 AC 651 ms
76,400 KB
testcase_23 AC 640 ms
76,400 KB
testcase_24 AC 667 ms
76,396 KB
testcase_25 AC 636 ms
76,500 KB
testcase_26 AC 664 ms
76,400 KB
testcase_27 AC 641 ms
76,396 KB
testcase_28 AC 668 ms
76,400 KB
testcase_29 AC 641 ms
76,396 KB
testcase_30 AC 666 ms
76,400 KB
testcase_31 WA -
testcase_32 AC 670 ms
76,408 KB
testcase_33 AC 113 ms
75,828 KB
testcase_34 AC 237 ms
76,484 KB
testcase_35 AC 375 ms
76,544 KB
testcase_36 AC 182 ms
76,300 KB
testcase_37 AC 75 ms
73,272 KB
testcase_38 AC 168 ms
76,224 KB
testcase_39 AC 155 ms
76,400 KB
testcase_40 AC 260 ms
76,504 KB
testcase_41 AC 61 ms
66,284 KB
testcase_42 AC 177 ms
76,224 KB
testcase_43 AC 470 ms
76,716 KB
testcase_44 AC 497 ms
76,388 KB
testcase_45 AC 155 ms
76,212 KB
testcase_46 AC 186 ms
76,204 KB
testcase_47 AC 496 ms
76,384 KB
testcase_48 AC 210 ms
76,232 KB
testcase_49 AC 284 ms
76,516 KB
testcase_50 AC 355 ms
76,336 KB
testcase_51 AC 103 ms
75,872 KB
testcase_52 AC 244 ms
76,268 KB
testcase_53 WA -
testcase_54 AC 41 ms
53,456 KB
testcase_55 WA -
testcase_56 AC 46 ms
59,720 KB
testcase_57 AC 45 ms
59,720 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
dir = [-1, 0, 1]
pos = []
for i in range(H+2):
    if i==0 or i==H+1:
        for j in range(W+2):
            pos.append((i, j))
    else:
        pos.append((i, 0))
        pos.append((i, W+1))
ans = 0
for x in range(H+W+1):
    if 0<=x<=H+1:
        dir = [(0, 1), (1, 1), (-1, 1)]
    else:
        dir = [(1, 0), (1, 1), (1, -1)]
    for dx, dy in dir:
        sco = 0
        S = set()
        if 0<=x<=H+1:
            nx = x
            ny = 0
        else:
            nx = 0
            ny = x-(H)
        nx+=dx
        ny+=dy
        while 1<=nx<=H and 1<=ny<=W:
            sco += A[nx-1][ny-1]
            S.add((nx, ny))
            nx+=dx
            ny+=dy

        for x2 in range(x+1, H+W+1):
            if 0<=x2<=H+1:
                dir2 = [(0, 1), (1, 1), (-1, 1)]
            else:
                dir2 = [(1, 0), (1, 1), (1, -1)]
            for dx2, dy2 in dir2:
                sco2 = 0
                if 0<=x2<=H+1:
                    nx2 = x2
                    ny2 = 0
                else:
                    nx2 = 0
                    ny2 = x2-(H)
                nx2+=dx2
                ny2+=dy2
                while 1<=nx2<=H and 1<=ny2<=W:
                    if (nx2, ny2) not in S:
                        sco2 += A[nx2-1][ny2-1]
                    nx2+=dx2
                    ny2+=dy2

                ans = max(ans, sco+sco2)
print(ans)
0