結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,288 KB
testcase_01 AC 42 ms
53,880 KB
testcase_02 AC 40 ms
52,960 KB
testcase_03 AC 144 ms
76,904 KB
testcase_04 AC 143 ms
76,904 KB
testcase_05 AC 157 ms
76,900 KB
testcase_06 AC 158 ms
77,060 KB
testcase_07 AC 158 ms
76,924 KB
testcase_08 AC 159 ms
77,040 KB
testcase_09 AC 161 ms
76,936 KB
testcase_10 WA -
testcase_11 AC 143 ms
77,152 KB
testcase_12 AC 143 ms
77,060 KB
testcase_13 AC 433 ms
76,884 KB
testcase_14 AC 452 ms
76,808 KB
testcase_15 AC 470 ms
76,848 KB
testcase_16 AC 468 ms
76,836 KB
testcase_17 AC 464 ms
76,812 KB
testcase_18 AC 454 ms
76,812 KB
testcase_19 AC 434 ms
76,956 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 465 ms
76,700 KB
testcase_23 AC 439 ms
76,812 KB
testcase_24 AC 442 ms
76,696 KB
testcase_25 AC 449 ms
77,220 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 465 ms
76,948 KB
testcase_29 AC 458 ms
76,844 KB
testcase_30 AC 430 ms
76,968 KB
testcase_31 WA -
testcase_32 AC 463 ms
76,708 KB
testcase_33 AC 116 ms
76,536 KB
testcase_34 AC 205 ms
77,016 KB
testcase_35 AC 277 ms
76,912 KB
testcase_36 AC 134 ms
76,568 KB
testcase_37 AC 67 ms
68,756 KB
testcase_38 AC 132 ms
76,696 KB
testcase_39 AC 143 ms
76,964 KB
testcase_40 AC 197 ms
76,992 KB
testcase_41 AC 59 ms
65,684 KB
testcase_42 AC 161 ms
76,796 KB
testcase_43 AC 336 ms
76,784 KB
testcase_44 AC 367 ms
77,180 KB
testcase_45 AC 142 ms
77,020 KB
testcase_46 AC 166 ms
76,536 KB
testcase_47 AC 337 ms
76,920 KB
testcase_48 AC 160 ms
76,844 KB
testcase_49 AC 218 ms
76,756 KB
testcase_50 AC 243 ms
76,764 KB
testcase_51 AC 94 ms
74,796 KB
testcase_52 AC 199 ms
76,524 KB
testcase_53 AC 47 ms
54,124 KB
testcase_54 AC 46 ms
53,360 KB
testcase_55 AC 52 ms
60,912 KB
testcase_56 AC 54 ms
61,404 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 52 ms
60,628 KB
testcase_62 AC 53 ms
60,060 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 i < 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