結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー rlangevinrlangevin
提出日時 2023-01-20 00:25:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 60,836 KB
最終ジャッジ日時 2024-06-22 17:17:01
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,112 KB
testcase_01 AC 39 ms
52,944 KB
testcase_02 AC 38 ms
52,464 KB
testcase_03 AC 39 ms
52,248 KB
testcase_04 AC 41 ms
58,920 KB
testcase_05 AC 44 ms
59,532 KB
testcase_06 AC 46 ms
60,200 KB
testcase_07 AC 43 ms
59,032 KB
testcase_08 AC 44 ms
58,500 KB
testcase_09 AC 45 ms
60,068 KB
testcase_10 AC 44 ms
59,104 KB
testcase_11 AC 43 ms
59,032 KB
testcase_12 AC 43 ms
58,496 KB
testcase_13 AC 45 ms
60,220 KB
testcase_14 AC 46 ms
60,556 KB
testcase_15 AC 50 ms
60,836 KB
testcase_16 AC 46 ms
58,636 KB
testcase_17 AC 47 ms
60,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L, R = map(int, input().split())
maxv = [-1] * 2005
ans = [-1] * 2005
for i in range(N):
    xL, yU, xR, yD = map(int, input().split())
    xL = max(0, xL)
    for j in range(xL, xR + 1):
        if yD > maxv[j]:
            maxv[j] = yD
            ans[j] = i

S = set()
for i in range(L, R + 1):
    S.add(ans[i])
    
for i in range(N):
    if i in S:
        print(1)
    else:
        print(0)
0