結果

問題 No.2359 A in S ?
ユーザー 👑 rin204rin204
提出日時 2024-04-14 21:21:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 113,756 KB
最終ジャッジ日時 2024-10-04 00:34:27
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,212 KB
testcase_01 AC 38 ms
53,316 KB
testcase_02 AC 54 ms
65,616 KB
testcase_03 AC 38 ms
53,324 KB
testcase_04 AC 197 ms
102,804 KB
testcase_05 AC 234 ms
109,232 KB
testcase_06 AC 186 ms
100,016 KB
testcase_07 AC 169 ms
96,144 KB
testcase_08 AC 531 ms
113,756 KB
testcase_09 AC 162 ms
99,452 KB
testcase_10 AC 222 ms
111,516 KB
testcase_11 AC 236 ms
111,312 KB
testcase_12 AC 196 ms
102,380 KB
testcase_13 AC 173 ms
97,880 KB
testcase_14 AC 176 ms
98,504 KB
testcase_15 AC 167 ms
97,536 KB
testcase_16 AC 182 ms
98,376 KB
testcase_17 AC 159 ms
96,384 KB
testcase_18 AC 158 ms
95,876 KB
testcase_19 AC 169 ms
96,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
dic = {}

for _ in range(n):
    l, r, x, y = map(int, input().split())
    tmp = (x << 20) | y
    dic.setdefault(tmp, []).append((l, r))

A = list(map(int, input().split()))
ma = max(A)
cnt = [0] * (ma + 1)

for key, lst in dic.items():
    x = key >> 20
    y = key & 0xFFFFF

    le = ma // x
    imos = [0] * (le + 5)
    for l, r in lst:
        s = (l - y + x - 1) // x
        t = (r - y) // x
        imos[s] += 1
        imos[t + 1] -= 1
    for i in range(le + 4):
        imos[i + 1] += imos[i]
        if i * x + y <= ma:
            cnt[i * x + y] += imos[i]
        else:
            break

for a in A:
    print(cnt[a])
0