結果

問題 No.755 Zero-Sum Rectangle
ユーザー AEnAEn
提出日時 2022-08-30 16:44:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,747 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,176 KB
最終ジャッジ日時 2024-04-25 01:35:13
合計ジャッジ時間 18,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 TLE -
testcase_02 AC 1,361 ms
77,176 KB
testcase_03 AC 1,330 ms
76,772 KB
testcase_04 AC 1,308 ms
76,920 KB
testcase_05 AC 1,292 ms
76,640 KB
testcase_06 AC 1,287 ms
77,024 KB
testcase_07 AC 1,281 ms
76,828 KB
testcase_08 AC 1,266 ms
77,084 KB
testcase_09 AC 1,270 ms
76,752 KB
testcase_10 AC 1,266 ms
76,772 KB
testcase_11 AC 56 ms
62,080 KB
evil_1 AC 1,392 ms
77,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, M = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(M)]
ac = [[0]*(M+1) for _ in range(M+1)]
for i in range(M):
    for j in range(M):
        ac[i][j] += A[i][j]
        ac[-1][-1] += A[i][j]
        ac[-1][j] -= A[i][j]
        ac[i][-1] -= A[i][j]
for i in range(M+1):
    for j in range(1, M+1):
        ac[i][j] += ac[i][j-1]
for i in range(1, M+1):
    for j in range(M+1):
        ac[i][j] += ac[i-1][j]
res = [[0]*(M+1) for _ in range(M+1)]
for i in range(M):
    for j in range(M):
        num = A[i][j]
        for x in range(i, M):
            for y in range(j, M):
                if i==0 and j==0 and ac[x][y]==0:
                    res[i][j] += 1
                    res[x+1][y+1] += 1
                    res[i][y+1] -= 1
                    res[x+1][j] -= 1
                elif i==0 and ac[x][y]-ac[x][j-1]==0:
                    res[i][j] += 1
                    res[x+1][y+1] += 1
                    res[i][y+1] -= 1
                    res[x+1][j] -= 1
                elif j==0 and ac[x][y]-ac[i-1][y]==0:
                    res[i][j] += 1
                    res[x+1][y+1] += 1
                    res[i][y+1] -= 1
                    res[x+1][j] -= 1
                else:
                    if ac[x][y]-ac[i-1][y]-ac[x][j-1]+ac[i-1][j-1]==0:
                        res[i][j] += 1
                        res[x+1][y+1] += 1
                        res[i][y+1] -= 1
                        res[x+1][j] -= 1

for i in range(M+1):
    for j in range(1, M+1):
        res[i][j] += res[i][j-1]
for i in range(1, M+1):
    for j in range(M+1):
        res[i][j] += res[i-1][j]
for i in range(N):
    x, y = map(int,input().split())
    print(res[x-1][y-1])
0