結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー fumofumofunifumofumofuni
提出日時 2023-06-21 01:15:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 63,316 KB
最終ジャッジ日時 2024-06-28 11:59:26
合計ジャッジ時間 1,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,444 KB
testcase_01 AC 38 ms
52,692 KB
testcase_02 AC 37 ms
52,428 KB
testcase_03 AC 37 ms
52,580 KB
testcase_04 AC 43 ms
60,316 KB
testcase_05 AC 46 ms
61,920 KB
testcase_06 AC 45 ms
61,528 KB
testcase_07 AC 48 ms
60,936 KB
testcase_08 AC 46 ms
61,784 KB
testcase_09 AC 47 ms
62,892 KB
testcase_10 AC 47 ms
62,444 KB
testcase_11 AC 47 ms
62,028 KB
testcase_12 AC 47 ms
60,880 KB
testcase_13 AC 50 ms
61,556 KB
testcase_14 AC 51 ms
63,316 KB
testcase_15 AC 51 ms
62,908 KB
testcase_16 AC 48 ms
61,720 KB
testcase_17 AC 50 ms
62,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,L,R=map(int,input().split())
l=[0]*N
r=[0]*N
d=[0]*N
for i in range(N):
    a,b,c,f=map(int,input().split())
    l[i]=a
    r[i]=c
    d[i]=f

ans=[0]*N
for i in range(L,R+1):
    res=-1
    idx=-1
    for j in range(N):
        if l[j]<=i and i<=r[j]:
            if res<d[j]:
                idx=j
                res=d[j]
    if idx != -1:
        ans[idx]=1

for i in range(N):
    print(ans[i])


0