結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー asahi32942398asahi32942398
提出日時 2018-04-28 00:16:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 3,189 ms
コンパイル使用メモリ 78,012 KB
実行使用メモリ 54,872 KB
最終ジャッジ日時 2024-06-27 23:01:36
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,948 KB
testcase_01 AC 136 ms
54,084 KB
testcase_02 AC 136 ms
54,060 KB
testcase_03 AC 135 ms
54,024 KB
testcase_04 AC 135 ms
53,776 KB
testcase_05 AC 140 ms
54,204 KB
testcase_06 AC 150 ms
54,248 KB
testcase_07 AC 145 ms
54,008 KB
testcase_08 AC 152 ms
54,332 KB
testcase_09 AC 149 ms
54,232 KB
testcase_10 AC 151 ms
54,256 KB
testcase_11 AC 157 ms
54,436 KB
testcase_12 AC 160 ms
53,860 KB
testcase_13 AC 176 ms
54,136 KB
testcase_14 AC 179 ms
54,560 KB
testcase_15 AC 211 ms
54,872 KB
testcase_16 AC 149 ms
53,860 KB
testcase_17 AC 172 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main{
public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    class Enemy{
         int xL;
        int xU;
        int xR;
        int xD;
        int enemyID; 
        public Enemy(int A,int B,int C,int D,int E){
        this.xL=A;
        this.xU=B;
        this.xR=C;
        this.xD=D;
        this.enemyID = E;    
        }
        
    }
     class enemyComparator implements Comparator<Enemy> {
	@Override
	public int compare(Enemy e1, Enemy e2) {
		return e1.xD > e2.xD ? -1 : 1;
	    }
    }
    
    int enemyNum = sc.nextInt();
    int xLB = sc.nextInt();
    int xRB = sc.nextInt();
    boolean[] hit = new boolean[enemyNum];
    List<Enemy> enemyData = new ArrayList<>();
    for(int i=0;i<enemyNum;i++){
    int    xL=sc.nextInt();
    int    xU=sc.nextInt();
    int    xR=sc.nextInt();
    int    xD=sc.nextInt();
    int enemyID = i;
    Enemy e = new Enemy(xL,xU,xR,xD,i);
        enemyData.add(e);
    }
    Collections.sort(enemyData, new enemyComparator());
  for(int i=xLB;i<=xRB;i++){
        for(Enemy e:enemyData){
            if(e.xL<=i&&i<=e.xR){
            hit[e.enemyID]=true;
            break ;
            }
        }
    }
    for(int i=0;i<enemyNum;i++){
        if(hit[i])
        System.out.println(1);
        else
        System.out.println(0);
    }
}    
}
0