結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー Konton7Konton7
提出日時 2019-05-11 12:49:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 01:09:23
合計ジャッジ時間 1,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 30 ms
10,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, laser_l, laser_r = [ int(v) for v in input().split() ]

object_list = []

xmax = 1280
ymax = 1680
xmin = 0
for i in range(n):
    xl,yu,xr,yd = [ int(v) for v in input().split() ]
    object_list.append([min(yd,ymax),max(xmin,xl),min(xr,xmax),i])

object_list = sorted(object_list,reverse = True)

x_list = [ 0 for i in range(laser_l+1)] + [ 1 for i in range(laser_l+1,laser_r+1)] + [ 0 for i in range(laser_r+1,xmax)]


hit_list = [0]*n

for i in range(n):

    objectx = [0 for j in range(object_list[i][2]-object_list[i][1]+1)]
    if x_list[object_list[i][1]:object_list[i][2]+1] != objectx:
        hit_list[object_list[i][3]] = 1

    x_list = x_list[:object_list[i][1]] + objectx + x_list[object_list[i][2]+1:]

for i in range(n):
    print(hit_list[i])
0