結果

問題 No.755 Zero-Sum Rectangle
ユーザー tatyamtatyam
提出日時 2018-11-15 17:14:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 69,760 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-01 05:10:55
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 90 ms
5,376 KB
testcase_02 AC 73 ms
5,376 KB
testcase_03 AC 97 ms
5,376 KB
testcase_04 AC 110 ms
5,376 KB
testcase_05 AC 121 ms
5,376 KB
testcase_06 AC 80 ms
5,376 KB
testcase_07 AC 74 ms
5,376 KB
testcase_08 AC 102 ms
5,376 KB
testcase_09 AC 114 ms
5,376 KB
testcase_10 AC 132 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(ll i=a;i<b;i++)
int main(){
    int n,m;
    cin >> n >> m;
    ll a[m+1][m+1];
    rep(i,0,m+1) a[0][i] = a[i][0] = 0;
    rep(i,1,m+1) rep(j,1,m+1) cin >> a[i][j];
    rep(i,1,m+1) rep(j,1,m+1) a[i][j] += a[i][j-1];
    rep(j,1,m+1) rep(i,1,m+1) a[i][j] += a[i-1][j];
    rep(i,0,n) {
        int x,y;
        cin >> x >> y;
        int ans = 0;
        rep(i,0,x) rep(j,0,y) rep(k,x,m+1) rep(l,y,m+1) if(a[i][j] - a[i][l] - a[k][j] + a[k][l] == 0) ans++;
        cout << ans << endl;
    }
}
0