結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | htensai |
提出日時 | 2020-01-29 08:50:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 984 ms / 2,000 ms |
コード長 | 1,323 bytes |
コンパイル時間 | 2,065 ms |
コンパイル使用メモリ | 77,088 KB |
実行使用メモリ | 48,016 KB |
最終ジャッジ日時 | 2024-09-15 20:06:41 |
合計ジャッジ時間 | 13,896 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
46,492 KB |
testcase_01 | AC | 545 ms
46,204 KB |
testcase_02 | AC | 689 ms
47,408 KB |
testcase_03 | AC | 837 ms
47,416 KB |
testcase_04 | AC | 920 ms
47,344 KB |
testcase_05 | AC | 984 ms
47,640 KB |
testcase_06 | AC | 716 ms
47,516 KB |
testcase_07 | AC | 712 ms
47,628 KB |
testcase_08 | AC | 888 ms
47,396 KB |
testcase_09 | AC | 764 ms
48,016 KB |
testcase_10 | AC | 723 ms
47,708 KB |
testcase_11 | AC | 139 ms
41,440 KB |
evil_1 | TLE | - |
ソースコード
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[][] sums = new long[m + 1][m + 1]; for (int i = 1; i <= m; i++) { for (int j = 1; j <= m; j++) { sums[i][j] = sc.nextInt() + sums[i - 1][j] + sums[i][j - 1] - sums[i - 1][j - 1]; } } 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(); } StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { int ans = 0; for (int x1 = 1; x1 <= xArr[i]; x1++) { for (int x2 = xArr[i]; x2 <= m; x2++) { for (int y1 = 1; y1 <= yArr[i]; y1++) { for (int y2 = yArr[i]; y2 <= m; y2++) { if (sums[x2][y2] - sums[x1 - 1][y2] - sums[x2][y1 - 1] + sums[x1 - 1][y1 - 1] == 0) { ans++; } } } } } sb.append(ans).append("\n"); } System.out.print(sb); } }