結果

問題 No.2509 Beam Shateki
ユーザー ニックネームニックネーム
提出日時 2023-10-20 23:07:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-09-20 22:09:30
合計ジャッジ時間 52,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,000 KB
testcase_01 AC 44 ms
60,544 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 298 ms
76,984 KB
testcase_04 AC 293 ms
76,976 KB
testcase_05 AC 287 ms
77,240 KB
testcase_06 AC 292 ms
77,104 KB
testcase_07 AC 307 ms
77,236 KB
testcase_08 AC 296 ms
76,928 KB
testcase_09 AC 293 ms
76,928 KB
testcase_10 AC 292 ms
77,000 KB
testcase_11 AC 292 ms
77,492 KB
testcase_12 AC 291 ms
76,984 KB
testcase_13 AC 1,862 ms
79,360 KB
testcase_14 AC 1,950 ms
79,488 KB
testcase_15 AC 1,874 ms
79,616 KB
testcase_16 AC 1,839 ms
79,360 KB
testcase_17 AC 1,865 ms
79,872 KB
testcase_18 AC 1,874 ms
80,128 KB
testcase_19 AC 1,848 ms
79,744 KB
testcase_20 AC 1,848 ms
79,488 KB
testcase_21 AC 1,832 ms
79,360 KB
testcase_22 AC 1,844 ms
79,360 KB
testcase_23 AC 1,819 ms
79,360 KB
testcase_24 AC 1,897 ms
80,128 KB
testcase_25 AC 1,900 ms
79,744 KB
testcase_26 AC 1,880 ms
79,872 KB
testcase_27 AC 1,874 ms
79,360 KB
testcase_28 AC 1,852 ms
79,488 KB
testcase_29 AC 1,909 ms
79,488 KB
testcase_30 AC 1,895 ms
79,872 KB
testcase_31 WA -
testcase_32 AC 1,848 ms
79,488 KB
testcase_33 AC 110 ms
76,416 KB
testcase_34 AC 459 ms
77,568 KB
testcase_35 AC 914 ms
77,824 KB
testcase_36 AC 239 ms
76,964 KB
testcase_37 AC 94 ms
75,904 KB
testcase_38 AC 251 ms
76,696 KB
testcase_39 AC 231 ms
77,056 KB
testcase_40 AC 543 ms
77,440 KB
testcase_41 AC 73 ms
76,032 KB
testcase_42 AC 289 ms
76,960 KB
testcase_43 AC 1,109 ms
78,464 KB
testcase_44 AC 1,352 ms
78,848 KB
testcase_45 AC 224 ms
76,824 KB
testcase_46 AC 352 ms
76,800 KB
testcase_47 AC 1,388 ms
78,976 KB
testcase_48 AC 385 ms
77,440 KB
testcase_49 AC 616 ms
78,064 KB
testcase_50 AC 757 ms
77,696 KB
testcase_51 AC 101 ms
76,288 KB
testcase_52 AC 495 ms
77,440 KB
testcase_53 AC 57 ms
64,896 KB
testcase_54 AC 50 ms
64,896 KB
testcase_55 AC 51 ms
65,536 KB
testcase_56 AC 53 ms
65,536 KB
testcase_57 AC 55 ms
65,792 KB
testcase_58 WA -
testcase_59 AC 50 ms
65,536 KB
testcase_60 WA -
testcase_61 AC 52 ms
65,536 KB
testcase_62 AC 52 ms
65,280 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
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()
        while a[px][py]: t.add((px,py)); px += dx; py += 1
        s.append(t)
for y in range(w+2):
    for dy in range(-1,2):
        px = 1; py = y+dy; t = set()
        while a[px][py]: t.add((px,py)); px += 1; py += dy
        s.append(t)
for si in s:
    for sj in s:
        ans = max(ans,sum(a[x][y] for x,y in si|sj))
print(ans)
0