結果
問題 | No.1074 増殖 |
ユーザー | ks2m |
提出日時 | 2020-06-05 22:18:23 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,010 bytes |
コンパイル時間 | 2,742 ms |
コンパイル使用メモリ | 76,752 KB |
実行使用メモリ | 736,232 KB |
最終ジャッジ日時 | 2024-05-09 21:52:31 |
合計ジャッジ時間 | 18,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int[] xa = new int[n]; int[] ya = new int[n]; int[] xb = new int[n]; int[] yb = new int[n]; for (int i = 0; i < n; i++) { String[] sa = br.readLine().split(" "); xa[i] = Integer.parseInt(sa[0]) + 20000; ya[i] = Integer.parseInt(sa[1]) + 20000; xb[i] = Integer.parseInt(sa[2]) + 19999; yb[i] = Integer.parseInt(sa[3]) + 19999; } br.close(); boolean[][] g = new boolean[40000][40000]; PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < n; i++) { int ans = 0; for (int j = xa[i]; j <= xb[i]; j++) { for (int j2 = ya[i]; j2 <= yb[i]; j2++) { if (!g[j][j2]) { g[j][j2] = true; ans++; } } } pw.println(ans); } pw.flush(); } }