結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | uafr_cs |
提出日時 | 2018-04-27 22:54:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 2,104 ms |
コンパイル使用メモリ | 78,384 KB |
実行使用メモリ | 42,120 KB |
最終ジャッジ日時 | 2024-06-27 22:08:15 |
合計ジャッジ時間 | 5,535 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
40,892 KB |
testcase_01 | AC | 130 ms
41,460 KB |
testcase_02 | AC | 129 ms
41,784 KB |
testcase_03 | AC | 114 ms
41,692 KB |
testcase_04 | WA | - |
testcase_05 | AC | 119 ms
40,288 KB |
testcase_06 | AC | 134 ms
41,716 KB |
testcase_07 | AC | 141 ms
41,300 KB |
testcase_08 | WA | - |
testcase_09 | AC | 142 ms
41,692 KB |
testcase_10 | AC | 150 ms
41,228 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 171 ms
42,040 KB |
testcase_14 | AC | 163 ms
41,772 KB |
testcase_15 | AC | 186 ms
42,120 KB |
testcase_16 | AC | 141 ms
41,556 KB |
testcase_17 | AC | 171 ms
41,584 KB |
ソースコード
import java.math.BigInteger; import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; import java.util.TreeSet; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final int xLB = sc.nextInt(); final int xRB = sc.nextInt(); final int SIZE = 1280; int[] low_id = new int[SIZE + 1 + SIZE + SIZE]; int[] low_height = new int[SIZE + 1 + SIZE + SIZE]; Arrays.fill(low_id, -1); Arrays.fill(low_height, Integer.MIN_VALUE); for(int i = 0; i < N; i++) { final int xl = sc.nextInt() + (SIZE + 1); final int yu = sc.nextInt(); final int xr = sc.nextInt() + (SIZE + 1); final int yd = sc.nextInt(); for(int x = xl; x <= xr; x++) { if(low_height[x] < yd) { low_height[x] = yd; low_id[x] = i; } } } boolean[] hitted = new boolean[N]; for(int x = xLB + SIZE; x <= xRB + SIZE; x++) { if(low_id[x] >= 0) { hitted[low_id[x]] = true; } } for(int i = 0; i < N; i++) { System.out.println(hitted[i] ? 1 : 0); } } }