結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー YamaKasaYamaKasa
提出日時 2018-10-01 15:13:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 895 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 63,336 KB
最終ジャッジ日時 2024-10-12 09:47:45
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
52,116 KB
testcase_01 AC 156 ms
51,920 KB
testcase_02 AC 155 ms
52,356 KB
testcase_03 AC 153 ms
52,100 KB
testcase_04 WA -
testcase_05 AC 157 ms
52,132 KB
testcase_06 AC 167 ms
52,304 KB
testcase_07 AC 165 ms
52,320 KB
testcase_08 AC 178 ms
52,480 KB
testcase_09 AC 170 ms
52,308 KB
testcase_10 AC 178 ms
52,392 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 204 ms
52,616 KB
testcase_14 AC 205 ms
52,412 KB
testcase_15 AC 237 ms
53,688 KB
testcase_16 AC 167 ms
52,480 KB
testcase_17 AC 204 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int[][]d = new int[1680][1280];
		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(1279, XR);
			int hMax = Math.min(1679, 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 = 1679; j >= 0; j--) {
				if(d[j][i] != 0) {
					ans[d[j][i] - 1] = 1;
					break;
				}
			}
		}
		for(int i : ans) {
			System.out.println(i);
		}
	}
}
0