結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-06-10 02:46:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 215 ms / 2,000 ms |
コード長 | 1,114 bytes |
コンパイル時間 | 6,092 ms |
コンパイル使用メモリ | 77,948 KB |
実行使用メモリ | 54,724 KB |
最終ジャッジ日時 | 2024-06-30 13:09:01 |
合計ジャッジ時間 | 7,977 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
53,964 KB |
testcase_01 | AC | 135 ms
53,864 KB |
testcase_02 | AC | 136 ms
54,052 KB |
testcase_03 | AC | 132 ms
54,176 KB |
testcase_04 | AC | 133 ms
54,092 KB |
testcase_05 | AC | 147 ms
53,920 KB |
testcase_06 | AC | 152 ms
53,896 KB |
testcase_07 | AC | 152 ms
54,192 KB |
testcase_08 | AC | 157 ms
54,212 KB |
testcase_09 | AC | 153 ms
53,788 KB |
testcase_10 | AC | 162 ms
54,380 KB |
testcase_11 | AC | 157 ms
54,300 KB |
testcase_12 | AC | 156 ms
54,488 KB |
testcase_13 | AC | 198 ms
54,096 KB |
testcase_14 | AC | 191 ms
54,288 KB |
testcase_15 | AC | 215 ms
54,724 KB |
testcase_16 | AC | 149 ms
54,212 KB |
testcase_17 | AC | 197 ms
54,508 KB |
ソースコード
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+1, 1281); for(int x = l; x < r; x++){ if(beam[x] == 1) return true; } return false; } }