結果

問題 No.755 Zero-Sum Rectangle
ユーザー tentententen
提出日時 2020-09-01 16:45:11
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,484 bytes
コンパイル時間 2,479 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 48,108 KB
最終ジャッジ日時 2024-04-29 22:20:30
合計ジャッジ時間 16,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
46,956 KB
testcase_01 TLE -
testcase_02 AC 774 ms
47,684 KB
testcase_03 AC 788 ms
47,336 KB
testcase_04 AC 578 ms
47,568 KB
testcase_05 AC 609 ms
47,556 KB
testcase_06 AC 696 ms
47,828 KB
testcase_07 AC 759 ms
48,108 KB
testcase_08 AC 748 ms
48,060 KB
testcase_09 AC 745 ms
47,732 KB
testcase_10 AC 699 ms
47,852 KB
testcase_11 AC 138 ms
41,736 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
        long[][] field = new long[m + 1][m + 1];
        for (int i = 1; i <= m; i++) {
            for (int j = 1; j <= m; j++) {
                field[i][j] = field[i][j - 1] + field[i - 1][j] - field[i - 1][j - 1] + sc.nextInt();
            }
        }
        int[] xArr = new int[n];
        int[] yArr = new int[n];
        for (int i = 0; i < n; i++) {
            xArr[i] = sc.nextInt();
            yArr[i] = sc.nextInt();
        }
        int[] counts = new int[n];
        for (int a = 1; a <= m; a++) {
            for (int b = 1; b <= m; b++) {
                for (int c = a; c <= m; c++) {
                    for (int d = b; d <= m; d++) {
                        if (field[c][d] - field[a - 1][d] - field[c][b - 1] + field[a- 1][b - 1] != 0) {
                            continue;
                        }
                        for (int i = 0; i < n; i++) {
                            if (xArr[i] >= a && xArr[i] <= c && yArr[i] >= b && yArr[i] <= d) {
                                counts[i]++;
                            }
                        }
                    }
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : counts) {
            sb.append(x).append("\n");
        }
    	System.out.print(sb);
    }
}
0