結果

問題 No.2509 Beam Shateki
ユーザー ニックネームニックネーム
提出日時 2023-10-20 23:18:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,038 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 72,500 KB
最終ジャッジ日時 2024-09-20 22:48:11
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 38 ms
52,640 KB
testcase_02 AC 39 ms
52,684 KB
testcase_03 AC 57 ms
68,272 KB
testcase_04 AC 56 ms
68,004 KB
testcase_05 AC 57 ms
67,584 KB
testcase_06 AC 61 ms
66,528 KB
testcase_07 AC 58 ms
67,072 KB
testcase_08 AC 59 ms
66,344 KB
testcase_09 AC 57 ms
67,500 KB
testcase_10 AC 56 ms
66,232 KB
testcase_11 AC 57 ms
66,964 KB
testcase_12 AC 58 ms
66,504 KB
testcase_13 AC 61 ms
71,596 KB
testcase_14 AC 61 ms
71,288 KB
testcase_15 AC 61 ms
70,880 KB
testcase_16 AC 61 ms
71,712 KB
testcase_17 AC 62 ms
70,620 KB
testcase_18 AC 62 ms
70,792 KB
testcase_19 AC 62 ms
72,500 KB
testcase_20 AC 61 ms
70,868 KB
testcase_21 AC 61 ms
71,728 KB
testcase_22 AC 61 ms
70,604 KB
testcase_23 AC 63 ms
72,352 KB
testcase_24 AC 63 ms
71,660 KB
testcase_25 AC 61 ms
71,264 KB
testcase_26 AC 61 ms
71,484 KB
testcase_27 AC 61 ms
71,356 KB
testcase_28 AC 61 ms
70,864 KB
testcase_29 AC 61 ms
71,724 KB
testcase_30 AC 60 ms
70,520 KB
testcase_31 WA -
testcase_32 AC 63 ms
71,556 KB
testcase_33 AC 49 ms
62,464 KB
testcase_34 AC 54 ms
65,924 KB
testcase_35 AC 60 ms
69,636 KB
testcase_36 AC 51 ms
63,952 KB
testcase_37 AC 50 ms
64,108 KB
testcase_38 AC 53 ms
65,008 KB
testcase_39 AC 51 ms
63,340 KB
testcase_40 AC 54 ms
65,828 KB
testcase_41 AC 38 ms
53,040 KB
testcase_42 AC 54 ms
64,948 KB
testcase_43 AC 61 ms
69,176 KB
testcase_44 AC 59 ms
70,912 KB
testcase_45 AC 60 ms
63,640 KB
testcase_46 AC 53 ms
64,568 KB
testcase_47 AC 59 ms
69,676 KB
testcase_48 AC 54 ms
65,552 KB
testcase_49 AC 60 ms
68,412 KB
testcase_50 AC 56 ms
66,992 KB
testcase_51 AC 44 ms
61,296 KB
testcase_52 AC 54 ms
66,312 KB
testcase_53 AC 38 ms
52,492 KB
testcase_54 AC 38 ms
53,120 KB
testcase_55 AC 39 ms
52,872 KB
testcase_56 AC 39 ms
54,208 KB
testcase_57 AC 39 ms
53,396 KB
testcase_58 WA -
testcase_59 AC 39 ms
52,472 KB
testcase_60 WA -
testcase_61 AC 38 ms
53,348 KB
testcase_62 AC 39 ms
52,616 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
a = [[0]*(w+3)]+[[0]+list(map(int,input().split()))+[0,0] for _ in range(h)]+[[0]*(w+3),[0]*(w+3)]
s = []; ans = 0
for x in range(h+2):
    for dx in range(-1,2):
        px = x+dx; py = 1; t = set(); u = 0
        while a[px][py]: t.add((px,py)); u += a[px][py]; px += dx; py += 1
        s.append((u,t))
for y in range(w+2):
    for dy in range(-1,2):
        px = 1; py = y+dy; t = set(); u = 0
        while a[px][py]: t.add((px,py)); u += a[px][py]; px += 1; py += dy
        s.append((u,t))
for x in range(h+2):
    dx = 1; px = x+dx; py = w; t = set(); u = 0
    while a[px][py]: t.add((px,py)); u += a[px][py]; px += dx; py += 1
    s.append((u,t))
for y in range(w+2):
    dy = 1; px = h; py = y+dy; t = set(); u = 0
    while a[px][py]: t.add((px,py)); u += a[px][py]; px += 1; py += dy
    s.append((u,t))
s.sort(reverse=True)
for i in range(len(s)-1):
    for j in range(i+1,len(s)):
        if s[i][0]+s[j][0]<ans: break
        ans = max(ans,sum(a[x][y] for x,y in s[i][1]|s[j][1]))
print(ans)
0