結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | YamaKasa |
提出日時 | 2018-10-01 15:16:39 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 222 ms / 2,000 ms |
コード長 | 896 bytes |
コンパイル時間 | 2,128 ms |
コンパイル使用メモリ | 77,080 KB |
実行使用メモリ | 52,700 KB |
最終ジャッジ日時 | 2024-10-12 09:47:57 |
合計ジャッジ時間 | 6,216 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 152 ms
52,524 KB |
testcase_01 | AC | 149 ms
52,224 KB |
testcase_02 | AC | 147 ms
52,044 KB |
testcase_03 | AC | 147 ms
52,176 KB |
testcase_04 | AC | 167 ms
52,312 KB |
testcase_05 | AC | 151 ms
52,180 KB |
testcase_06 | AC | 159 ms
52,148 KB |
testcase_07 | AC | 155 ms
52,056 KB |
testcase_08 | AC | 161 ms
52,524 KB |
testcase_09 | AC | 165 ms
52,496 KB |
testcase_10 | AC | 163 ms
52,556 KB |
testcase_11 | AC | 166 ms
52,688 KB |
testcase_12 | AC | 167 ms
52,296 KB |
testcase_13 | AC | 183 ms
52,680 KB |
testcase_14 | AC | 185 ms
52,540 KB |
testcase_15 | AC | 222 ms
52,688 KB |
testcase_16 | AC | 158 ms
52,700 KB |
testcase_17 | AC | 206 ms
52,680 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[][]d = new int[1681][1281]; int N = scan.nextInt(); int xLB = scan.nextInt(); int xRB = scan.nextInt(); for(int i = 0; i < N; i++) { int XL = scan.nextInt(); int YU = scan.nextInt(); int XR = scan.nextInt(); int YD = scan.nextInt(); int id = i + 1; int wMin = Math.max(0, XL); int hMin = Math.max(0, YU); int wMax = Math.min(1280, XR); int hMax = Math.min(1680, YD); for(int h = hMin; h <= hMax; h++) { for(int w = wMin; w <= wMax; w++) { d[h][w] = id; } } } scan.close(); int[]ans = new int[N]; for(int i = xLB; i <= xRB; i++) { for(int j = 1680; j >= 0; j--) { if(d[j][i] != 0) { ans[d[j][i] - 1] = 1; break; } } } for(int i : ans) { System.out.println(i); } } }