結果

問題 No.755 Zero-Sum Rectangle
ユーザー Shuz*Shuz*
提出日時 2018-11-15 19:35:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 603 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-06-26 23:59:13
合計ジャッジ時間 3,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
21,376 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
evil_1 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [[0 for i in range(m + 1)]]
for i in range(m):
    a.append(list(map(int, input().split())))
    a[i + 1].insert(0, 0)
for i in range(m):
    for j in range(m):
        a[i + 1][j + 1] += a[i][j + 1] + a[i + 1][j] - a[i][j]
for i in range(n):
    x, y = map(int, input().split())
    res = 0
    for x1 in range(x):
        for y1 in range(y):
            for x2 in range(m - x + 1):
                for y2 in range(m - y + 1):
                    if a[x1][y1] + a[x2 + x][y2 + y] - a[x1][y2 + y] - a[x2 + x][y1] == 0:
                        res += 1
    print(res)
0