結果

問題 No.755 Zero-Sum Rectangle
ユーザー tentententen
提出日時 2020-09-01 17:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 57,092 KB
最終ジャッジ日時 2024-11-19 08:22:40
合計ジャッジ時間 11,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
57,092 KB
testcase_01 AC 350 ms
52,596 KB
testcase_02 AC 409 ms
52,392 KB
testcase_03 AC 536 ms
52,360 KB
testcase_04 AC 584 ms
52,564 KB
testcase_05 AC 622 ms
52,204 KB
testcase_06 AC 404 ms
52,376 KB
testcase_07 AC 391 ms
52,484 KB
testcase_08 AC 275 ms
52,996 KB
testcase_09 AC 388 ms
52,492 KB
testcase_10 AC 457 ms
53,384 KB
testcase_11 AC 52 ms
50,288 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
    	BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    	String[] first = br.readLine().split(" ", 2);
    	int n = Integer.parseInt(first[0]);
    	int m = Integer.parseInt(first[1]);
        long[][] field = new long[m + 1][m + 1];
        for (int i = 1; i <= m; i++) {
            String[] line = br.readLine().split(" ", m);
            for (int j = 1; j <= m; j++) {
                field[i][j] = field[i][j - 1] + field[i - 1][j] - field[i - 1][j - 1] + Integer.parseInt(line[j - 1]);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            int count = 0;
            String[] line = br.readLine().split(" ", 2);
            int x = Integer.parseInt(line[0]);
            int y = Integer.parseInt(line[1]);
            for (int a = 1; a <= x; a++) {
                for (int b = 1; b <= y; b++) {
                    for (int c = x; c <= m; c++) {
                        for (int d = y; d <= m; d++) {
                            if (field[c][d] - field[a - 1][d] - field[c][b - 1] + field[a- 1][b - 1] == 0) {
                                count++;
                            }
                        }
                    }
                }
            }
            sb.append(count).append("\n");
        }
    	System.out.print(sb);
    }
}
0