結果

問題 No.2509 Beam Shateki
ユーザー ntudantuda
提出日時 2023-10-28 16:54:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,101 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,276 KB
最終ジャッジ日時 2024-09-25 16:31:14
合計ジャッジ時間 19,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,172 KB
testcase_01 AC 46 ms
54,048 KB
testcase_02 AC 39 ms
52,936 KB
testcase_03 AC 164 ms
76,604 KB
testcase_04 AC 165 ms
76,976 KB
testcase_05 AC 165 ms
76,852 KB
testcase_06 AC 165 ms
76,704 KB
testcase_07 AC 163 ms
76,708 KB
testcase_08 AC 164 ms
76,584 KB
testcase_09 AC 163 ms
76,720 KB
testcase_10 AC 164 ms
76,704 KB
testcase_11 AC 165 ms
76,720 KB
testcase_12 AC 165 ms
76,600 KB
testcase_13 AC 647 ms
77,004 KB
testcase_14 AC 644 ms
76,736 KB
testcase_15 AC 635 ms
77,120 KB
testcase_16 AC 644 ms
76,884 KB
testcase_17 AC 644 ms
76,768 KB
testcase_18 AC 643 ms
77,008 KB
testcase_19 AC 640 ms
76,888 KB
testcase_20 AC 641 ms
76,744 KB
testcase_21 AC 638 ms
76,616 KB
testcase_22 AC 638 ms
76,756 KB
testcase_23 AC 638 ms
77,276 KB
testcase_24 AC 638 ms
77,024 KB
testcase_25 AC 640 ms
76,884 KB
testcase_26 AC 634 ms
76,888 KB
testcase_27 AC 645 ms
77,120 KB
testcase_28 AC 637 ms
76,892 KB
testcase_29 AC 637 ms
76,868 KB
testcase_30 AC 635 ms
76,884 KB
testcase_31 WA -
testcase_32 AC 636 ms
77,028 KB
testcase_33 AC 104 ms
76,296 KB
testcase_34 AC 220 ms
76,652 KB
testcase_35 AC 355 ms
76,720 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 155 ms
76,764 KB
testcase_39 RE -
testcase_40 AC 242 ms
76,656 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 486 ms
76,628 KB
testcase_48 AC 195 ms
76,776 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 55 ms
64,000 KB
testcase_56 AC 54 ms
64,472 KB
testcase_57 AC 55 ms
64,180 KB
testcase_58 WA -
testcase_59 AC 55 ms
64,676 KB
testcase_60 WA -
testcase_61 AC 55 ms
63,688 KB
testcase_62 AC 54 ms
64,216 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [[0] * (W + 2)]
A += [[0] + list(map(int, input().split())) + [0] for _ in range(H)]
A += [[0] * (W + 2)]
H += 2
W += 2

N = (H + W) * 3
D = [[-1, 1], [0, 1], [1, 1], [1, -1], [1, 0], [1, 1]]
ans = 0
for i in range(N - 1):
    HW = i // (H * 3)
    if HW == 0:
        x = i // 3
        y = 0
    else:
        y = (i - H * 3) // 3
        x = 0
    cnt1 = 0
    P = set()
    dx, dy = D[3 * HW + i % 3]
    x += dx
    y += dy
    while 0 <= x < H and 0 <= y < W and A[x][y] > 0:
        cnt1 += A[x][y]
        P.add((x, y))
        x += dx
        y += dy
    for j in range(i + 1, N):
        HW = j // (H * 3)
        if HW == 0:
            x = j // 3
            y = 0
        else:
            y = (j - H * 3) // 3
            x = 0
        cnt2 = 0
        dx, dy = D[3 * HW + j % 3]
        x += dx
        y += dy
        while 0 <= x < H and 0 <= y < W and A[x][y] > 0:
            if (x, y) not in P:
                cnt2 += A[x][y]
            x += dx
            y += dy
        ans = max(ans, cnt1 + cnt2)
        #print(i,j,cnt1,cnt2)
print(ans)
0