結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | lllllll88938494 |
提出日時 | 2022-09-25 19:54:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,939 ms / 2,000 ms |
コード長 | 848 bytes |
コンパイル時間 | 546 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 76,860 KB |
最終ジャッジ日時 | 2024-06-01 23:12:24 |
合計ジャッジ時間 | 14,309 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,828 KB |
testcase_01 | AC | 1,939 ms
73,232 KB |
testcase_02 | AC | 1,193 ms
76,760 KB |
testcase_03 | AC | 1,183 ms
76,860 KB |
testcase_04 | AC | 1,146 ms
76,824 KB |
testcase_05 | AC | 1,130 ms
76,728 KB |
testcase_06 | AC | 1,125 ms
76,620 KB |
testcase_07 | AC | 1,115 ms
74,252 KB |
testcase_08 | AC | 1,098 ms
73,216 KB |
testcase_09 | AC | 1,114 ms
72,440 KB |
testcase_10 | AC | 1,114 ms
73,048 KB |
testcase_11 | AC | 41 ms
61,196 KB |
evil_1 | AC | 1,220 ms
76,952 KB |
ソースコード
n,m=map(int,input().split()) a=[[0]*(m+2)] + [[0]+list(map(int,input().split()))+[0] for i in range(m)] + [[0]*(m+2)] cnt=[[0]*(m+2) for i in range(m+2)] for i in range(1,len(a)): for j in range(1,len(a[i])): a[i][j] += a[i-1][j] + a[i][j-1] - a[i-1][j-1] for i in range(1,m+1): for j in range(1,m+1): for k in range(i,m+1): for l in range(j,m+1): if a[k][l] - a[i-1][l] - a[k][j-1] + a[i-1][j-1] == 0: cnt[i][j] += 1 cnt[i][l+1] -= 1 cnt[k+1][j] -= 1 cnt[k+1][l+1] += 1 for i in range(1,m+1): for j in range(1,m): cnt[i][j+1] += cnt[i][j] for j in range(1,m+1): for i in range(1,m): cnt[i+1][j] += cnt[i][j] for i in range(n): x,y=map(int,input().split()) print(cnt[x][y])