結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 33 ms
10,752 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() ]


laser_list = [[laser_l, laser_r]]
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 = [ i for i in range(xmax+1)]
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