結果

問題 No.2509 Beam Shateki
ユーザー ntudantuda
提出日時 2023-10-28 18:48:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,185 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-09-25 16:32:49
合計ジャッジ時間 20,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,136 KB
testcase_01 AC 41 ms
52,812 KB
testcase_02 AC 38 ms
53,692 KB
testcase_03 AC 156 ms
76,584 KB
testcase_04 AC 160 ms
76,592 KB
testcase_05 AC 164 ms
76,580 KB
testcase_06 AC 160 ms
76,732 KB
testcase_07 AC 159 ms
76,832 KB
testcase_08 AC 156 ms
76,448 KB
testcase_09 AC 161 ms
76,452 KB
testcase_10 AC 164 ms
76,696 KB
testcase_11 AC 164 ms
76,588 KB
testcase_12 AC 159 ms
76,460 KB
testcase_13 AC 629 ms
77,152 KB
testcase_14 AC 623 ms
76,752 KB
testcase_15 AC 621 ms
77,156 KB
testcase_16 AC 623 ms
77,156 KB
testcase_17 AC 625 ms
76,892 KB
testcase_18 AC 636 ms
76,876 KB
testcase_19 AC 623 ms
76,740 KB
testcase_20 AC 629 ms
76,708 KB
testcase_21 AC 619 ms
76,668 KB
testcase_22 AC 632 ms
77,000 KB
testcase_23 AC 632 ms
76,884 KB
testcase_24 AC 628 ms
77,004 KB
testcase_25 AC 619 ms
77,028 KB
testcase_26 AC 623 ms
77,124 KB
testcase_27 AC 630 ms
77,020 KB
testcase_28 AC 618 ms
77,280 KB
testcase_29 AC 616 ms
76,744 KB
testcase_30 AC 628 ms
77,016 KB
testcase_31 WA -
testcase_32 AC 622 ms
77,276 KB
testcase_33 AC 93 ms
76,288 KB
testcase_34 AC 211 ms
76,456 KB
testcase_35 AC 349 ms
76,660 KB
testcase_36 AC 130 ms
76,744 KB
testcase_37 AC 61 ms
68,920 KB
testcase_38 AC 148 ms
76,896 KB
testcase_39 AC 128 ms
76,716 KB
testcase_40 AC 229 ms
76,404 KB
testcase_41 AC 53 ms
64,632 KB
testcase_42 AC 149 ms
76,624 KB
testcase_43 AC 409 ms
77,128 KB
testcase_44 AC 476 ms
76,752 KB
testcase_45 AC 124 ms
76,628 KB
testcase_46 AC 159 ms
76,572 KB
testcase_47 AC 484 ms
76,740 KB
testcase_48 AC 187 ms
76,956 KB
testcase_49 AC 254 ms
76,752 KB
testcase_50 AC 300 ms
76,920 KB
testcase_51 AC 84 ms
76,404 KB
testcase_52 AC 219 ms
76,924 KB
testcase_53 AC 46 ms
61,356 KB
testcase_54 AC 47 ms
60,740 KB
testcase_55 AC 52 ms
65,084 KB
testcase_56 AC 54 ms
64,424 KB
testcase_57 AC 54 ms
64,372 KB
testcase_58 WA -
testcase_59 AC 52 ms
64,416 KB
testcase_60 WA -
testcase_61 AC 53 ms
64,072 KB
testcase_62 AC 50 ms
63,776 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):
    if i < H * 3:
        HW = 0
    else:
        HW = 1
    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):
        if j < H * 3:
            HW = 0
        else:
            HW = 1
        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