結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | tatyam |
提出日時 | 2018-11-16 17:49:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 650 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,472 KB |
最終ジャッジ日時 | 2024-06-26 23:59:43 |
合計ジャッジ時間 | 9,087 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
evil_1 | RE | - |
ソースコード
import numpy as np n, m = map(int, input().split()) a = np.zeros((m + 1, m + 1)) for i in range(1, m + 1): a[i][1:] = map(int, input().split()) for i in range(1, m + 1): for j in range(1, m + 1): a[i][j] += a[i][j - 1] for i in range(1, m + 1): for j in range(1, m + 1): a[i][j] += a[i - 1][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(x, m + 1): for y2 in range(y, m + 1): if a[x1][y1] - a[x1][y2] - a[x2][y1] + a[x2][y2] == 0: res += 1 print(res)