結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー titiatitia
提出日時 2024-08-21 03:12:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 92,592 KB
最終ジャッジ日時 2024-08-21 03:12:17
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
91,960 KB
testcase_01 AC 69 ms
91,868 KB
testcase_02 AC 73 ms
91,700 KB
testcase_03 AC 73 ms
91,844 KB
testcase_04 AC 70 ms
92,056 KB
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 #

N,L,R=map(int,input().split())

A=[[-1]*1681 for i in range(1281)]

for i in range(N):
    a,b,c,d=map(int,input().split())

    for x in range(max(0,a),min(1281,c+1)):
        for y in range(max(0,b),min(1281,d+1)):
            A[x][y]=i
    

ANS=[0]*N

for x in range(L,R+1):
    for j in range(1680,-1,-1):
        if A[x][j]!=-1:
            ANS[A[x][j]]=1
            break

for ans in ANS:
    print(ans)
0