結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-10 02:41:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,112 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 54,776 KB
最終ジャッジ日時 2024-06-30 13:09:09
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,032 KB
testcase_01 AC 140 ms
53,696 KB
testcase_02 AC 135 ms
53,848 KB
testcase_03 AC 134 ms
53,748 KB
testcase_04 WA -
testcase_05 AC 148 ms
53,988 KB
testcase_06 AC 149 ms
54,048 KB
testcase_07 AC 154 ms
53,728 KB
testcase_08 AC 159 ms
54,284 KB
testcase_09 WA -
testcase_10 AC 163 ms
53,924 KB
testcase_11 AC 173 ms
54,088 KB
testcase_12 AC 160 ms
54,108 KB
testcase_13 WA -
testcase_14 AC 180 ms
54,416 KB
testcase_15 WA -
testcase_16 AC 150 ms
54,300 KB
testcase_17 AC 201 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No678{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int xLB = sc.nextInt();
		int xRB = sc.nextInt();
		int[] beam = new int[1281];
		Arrays.fill(beam, xLB, xRB+1, 1);
		
		int[][] positions = new int[N][4];
		for(int n = 0; n < N; n++){
			for(int i = 0; i < 4; i++){
				positions[n][i] = sc.nextInt();
			}
		}
		int[] is_hit = new int[N];
		Arrays.fill(is_hit, 0);
		
		for(int h = 1680; h > 0; h--){
			for(int n = 0; n < N; n++){
				if(is_hit[n] == 1) continue;
				if(h < positions[n][3] && is_beam(beam, positions[n][0], positions[n][2])){
					is_hit[n] = 1;
					Arrays.fill(beam,
								Math.max(positions[n][0], 0),
								Math.min(positions[n][2]+1, 1281),
								0);
					// System.out.println("enemy " + n + " hit");
				}
			}
		}
		for(int n = 0; n < N; n++){
			System.out.println(is_hit[n]);
		}
	}
	private static boolean is_beam(int[] beam, int l, int r){
		l = Math.max(0, l);
		r = Math.min(r, 1281);
		for(int x = l; x < r; x++){
			if(beam[x] == 1) return true;
		}
		return false;
	}
}
0