結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー konabekonabe
提出日時 2018-04-27 23:18:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-27 22:17:08
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def debug(res_beam):
    for i, j in enumerate(res_beam):
        if not j :
            print(i,end=",")
    print()
WIDTH = 1280
HEIGHT = 1680

N, xLB, xRB = list(map(int, input().split()))
data = [list(map(int, input().split())) for i in range(N)]
data = [data[i] + [i] for i in range(N)]

res_beam = [True for i in range(WIDTH+1)]

attacked = [ 0 for i in range(N)]

data.sort(key=lambda x:x[3])

for d in data[::-1]:
    print(d)
    left = d[0] if d[0] >= 0 else 0
    right = d[2] if d[2] <= WIDTH else WIDTH
    if any(res_beam[left:right+1]):
       attacked[d[4]] = 1
       res_beam[left:right+1] = [False for i in range(right-left+1)]
       #print([False for i in range(d[2]-d[1]+2)])
       #print(d[0], d[2], len(res_beam))
       debug(res_beam)

for i in attacked:
    print(i)
    
0