結果

問題 No.2509 Beam Shateki
ユーザー rlangevinrlangevin
提出日時 2023-12-31 01:02:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,272 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,604 KB
最終ジャッジ日時 2024-09-27 16:57:42
合計ジャッジ時間 59,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,404 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 39 ms
53,156 KB
testcase_03 AC 414 ms
78,040 KB
testcase_04 AC 401 ms
77,652 KB
testcase_05 AC 417 ms
77,888 KB
testcase_06 AC 398 ms
78,060 KB
testcase_07 AC 393 ms
77,908 KB
testcase_08 AC 382 ms
78,296 KB
testcase_09 AC 385 ms
78,180 KB
testcase_10 AC 383 ms
77,788 KB
testcase_11 AC 382 ms
77,928 KB
testcase_12 AC 380 ms
77,812 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,992 ms
80,988 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 177 ms
77,752 KB
testcase_34 AC 599 ms
78,024 KB
testcase_35 AC 1,062 ms
78,780 KB
testcase_36 AC 279 ms
77,720 KB
testcase_37 AC 86 ms
76,228 KB
testcase_38 AC 376 ms
78,616 KB
testcase_39 AC 272 ms
77,684 KB
testcase_40 AC 675 ms
78,208 KB
testcase_41 AC 82 ms
76,408 KB
testcase_42 AC 348 ms
77,604 KB
testcase_43 AC 1,276 ms
79,456 KB
testcase_44 AC 1,471 ms
79,316 KB
testcase_45 AC 275 ms
77,596 KB
testcase_46 AC 385 ms
77,736 KB
testcase_47 AC 1,516 ms
79,708 KB
testcase_48 AC 539 ms
78,220 KB
testcase_49 AC 741 ms
78,088 KB
testcase_50 AC 906 ms
78,180 KB
testcase_51 AC 140 ms
76,936 KB
testcase_52 AC 577 ms
77,976 KB
testcase_53 AC 41 ms
60,856 KB
testcase_54 AC 39 ms
60,908 KB
testcase_55 AC 44 ms
63,240 KB
testcase_56 AC 45 ms
62,380 KB
testcase_57 AC 44 ms
63,344 KB
testcase_58 AC 47 ms
63,312 KB
testcase_59 AC 45 ms
63,064 KB
testcase_60 AC 45 ms
63,568 KB
testcase_61 AC 46 ms
62,532 KB
testcase_62 AC 46 ms
62,448 KB
testcase_63 AC 47 ms
62,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = []
for i in range(H):
    A.append(list(map(int, input().split())))
    
L = []
for i in range(H):
    for j in range(W):
        if i == 0 or j == W - 1 or j == 0:
            L.append((i, j))
            
dx = [1, 0, 1, 1]
dy = [0, 1, 1, -1]

def f(x1, y1, k1, x2, y2, k2):
    S = set()
    while True:
        S.add((x1, y1))
        x1 += dx[k1]
        y1 += dy[k1]
        if x1 < 0 or x1 > H - 1 or y1 < 0 or y1 > W - 1:
            break
    while True:
        S.add((x2, y2))
        x2 += dx[k2]
        y2 += dy[k2]
        if x2 < 0 or x2 > H - 1 or y2 < 0 or y2 > W - 1:
            break
    return S

ans = 0
for a in range(len(L)):
    x1, y1 = L[a]
    for k1 in range(4):
        if k1 == 0 and x1 != 0:
            continue
        if k1 == 1 and y1 != 0:
            continue
        for b in range(a, len(L)):
            x2, y2 = L[b]
            for k2 in range(4):
                if k2 == 0 and x2 != 0:
                    continue
                if k2 == 1 and y2 != 0:
                    continue
                S = f(x1, y1, k1, x2, y2, k2)
                temp = 0
                for xs, ys in S:
                    temp += A[xs][ys]
                ans = max(ans, temp)
                
print(ans)
0