結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | Pump0129 |
提出日時 | 2018-05-11 16:45:17 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-28 03:57:07 |
合計ジャッジ時間 | 1,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,880 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 30 ms
10,752 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 29 ms
10,752 KB |
testcase_14 | AC | 31 ms
10,752 KB |
testcase_15 | AC | 31 ms
11,008 KB |
testcase_16 | AC | 29 ms
10,880 KB |
testcase_17 | RE | - |
ソースコード
if __name__ == "__main__": n, lb, lr = tuple(map(int, input().split(" "))) enemy_list = [] ans_list = [] laser_range = [False for i in range(1281)] for i in range(lb, lr + 1): laser_range[i] = True for i in range(n): enemy_list.append((i,) + tuple(map(int, input().split(" ")))) enemy_list = sorted(enemy_list, key=lambda x: x[4]) enemy_list.reverse() for enemy in enemy_list: xl = enemy[1] if xl < 0: xl = 1 xr = enemy[3] yu = enemy[2] if yu < 0: yu = 0 yd = enemy[4] is_die = False for i in range(xl, xr + 1): if laser_range[i]: laser_range[i] = False is_die = True ans_list.append((enemy[0], is_die)) ans_list = sorted(ans_list, key=lambda x: x[0]) for ans in ans_list: if ans[1]: print(1) else: print(0)