結果

問題 No.755 Zero-Sum Rectangle
ユーザー kokatsukokatsu
提出日時 2021-11-17 22:04:04
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 211,980 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-06-22 13:18:12
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,756 KB
testcase_01 AC 149 ms
6,816 KB
testcase_02 AC 131 ms
6,940 KB
testcase_03 AC 177 ms
6,944 KB
testcase_04 AC 198 ms
6,940 KB
testcase_05 AC 210 ms
6,944 KB
testcase_06 AC 138 ms
6,944 KB
testcase_07 AC 125 ms
6,940 KB
testcase_08 AC 174 ms
6,944 KB
testcase_09 AC 199 ms
6,940 KB
testcase_10 AC 225 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, M;
    readf("%d %d\n", N, M);

    auto A = new long[][](M+1, M+1);
    foreach (i; 0 .. M) {
        auto input = readln.chomp.split.to!(long[]);
        A[i+1][1..M+1] = input;
    }

    foreach (i; 0 .. M) {
        A[i+1][] += A[i][];
    }

    foreach (i; 1 .. M+1) {
        foreach (j; 0 .. M) {
            A[i][j+1] += A[i][j];
        }
    }

    foreach (i; 0 .. N) {
        int x, y;
        readf("%d %d\n", x, y);

        long res;
        foreach (xs; 1 .. x+1) {
            foreach (xt; x .. M+1) {
                foreach (ys; 1 .. y+1) {
                    foreach (yt; y .. M+1) {
                        if (A[xt][yt] - A[xs-1][yt] - A[xt][ys-1] + A[xs-1][ys-1] == 0) {
                            ++res;
                        }
                    }
                }
            }
        }

        res.writeln;
    }
}
0