結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
46,592 KB
testcase_01 TLE -
testcase_02 AC 805 ms
47,600 KB
testcase_03 AC 790 ms
47,836 KB
testcase_04 AC 621 ms
47,632 KB
testcase_05 AC 615 ms
48,176 KB
testcase_06 AC 725 ms
48,032 KB
testcase_07 AC 783 ms
47,572 KB
testcase_08 AC 715 ms
47,888 KB
testcase_09 AC 669 ms
47,896 KB
testcase_10 AC 708 ms
47,992 KB
testcase_11 AC 146 ms
41,896 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