結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー lloyzlloyz
提出日時 2022-07-12 22:01:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 90,328 KB
最終ジャッジ日時 2024-06-23 20:01:43
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
89,564 KB
testcase_01 AC 84 ms
89,460 KB
testcase_02 AC 87 ms
90,024 KB
testcase_03 AC 86 ms
89,556 KB
testcase_04 AC 109 ms
89,520 KB
testcase_05 AC 91 ms
90,108 KB
testcase_06 AC 93 ms
89,684 KB
testcase_07 AC 86 ms
89,712 KB
testcase_08 AC 94 ms
89,644 KB
testcase_09 AC 88 ms
90,008 KB
testcase_10 AC 86 ms
89,760 KB
testcase_11 AC 99 ms
89,784 KB
testcase_12 AC 99 ms
90,104 KB
testcase_13 AC 98 ms
90,248 KB
testcase_14 AC 101 ms
90,328 KB
testcase_15 AC 94 ms
89,668 KB
testcase_16 AC 90 ms
89,940 KB
testcase_17 AC 91 ms
89,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

F = [[0 for _ in range(1280)] for _ in range(1680)]
n, l, r = map(int, input().split())
for idx in range(n):
    xl, yu, xr, yd = map(int, input().split())
    for i in range(max(0, yu - 1), min(1680, yd)):
        for j in range(max(0, xl - 1), min(1280, xr)):
            F[i][j] = idx + 1

ANS = [0 for _ in range(n)]
for j in range(max(l - 1, 0), r):
    for i in range(1679, -1, -1):
        if F[i][j] != 0:
            ANS[F[i][j] - 1] = 1
            break
print(*ANS, sep='\n')
0