結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | tenten |
提出日時 | 2022-10-20 11:57:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,223 bytes |
コンパイル時間 | 1,815 ms |
コンパイル使用メモリ | 77,768 KB |
実行使用メモリ | 50,728 KB |
最終ジャッジ日時 | 2024-06-30 05:42:34 |
合計ジャッジ時間 | 3,364 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,424 KB |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
evil_1 | RE | - |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); long[][] field = new long[n + 1][n + 1]; for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { field[i][j] = field[i][j - 1] + field[i - 1][j] - field[i - 1][j - 1] + sc.nextInt(); } } int[][] imos = new int[n + 2][n + 2]; for (int a = 0; a < n; a++) { for (int b = 0; b < n; b++) { for (int c = a + 1; c <= n; c++) { for (int d = b + 1; d <= n; d++) { if (field[c][d] - field[a][d] - field[c][b] + field[a][b] == 0) { imos[a + 1][b + 1]++; imos[a + 1][d + 1]--; imos[c + 1][b + 1]--; imos[c + 1][d + 1]++; } } } } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { imos[i][j] += imos[i - 1][j] + imos[i][j - 1] - imos[i - 1][j - 1]; } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < m; i++) { sb.append(imos[sc.nextInt()][sc.nextInt()]).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }