結果

問題 No.2359 A in S ?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-06-24 17:49:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 259,916 KB
最終ジャッジ日時 2024-07-01 20:48:06
合計ジャッジ時間 6,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,208 KB
testcase_01 AC 53 ms
62,912 KB
testcase_02 AC 54 ms
62,720 KB
testcase_03 AC 39 ms
53,248 KB
testcase_04 AC 226 ms
108,288 KB
testcase_05 AC 416 ms
201,776 KB
testcase_06 AC 219 ms
104,064 KB
testcase_07 AC 192 ms
103,288 KB
testcase_08 AC 538 ms
197,888 KB
testcase_09 AC 187 ms
105,772 KB
testcase_10 AC 411 ms
259,916 KB
testcase_11 AC 449 ms
259,916 KB
testcase_12 AC 220 ms
108,768 KB
testcase_13 AC 207 ms
102,800 KB
testcase_14 AC 211 ms
103,624 KB
testcase_15 AC 189 ms
102,588 KB
testcase_16 AC 224 ms
103,872 KB
testcase_17 AC 197 ms
102,664 KB
testcase_18 AC 205 ms
102,576 KB
testcase_19 AC 206 ms
102,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
lim = 200
M = 10**5+5
small = [[] for i in range(lim+1)]
large = []

for i in range(n):
    l,r,x,y = map(int,input().split())
    if x <= lim:
        small[x].append([y,l,r])
    else:
        large.append([x,y,l,r])


A = list(map(int,input().split()))

nums = [0]*M

for x in range(1,lim+1):

    if small[x] == []:
        continue

    imos = [0]*M

    for y,l,r in small[x]:

        tl = l//x*x+y
        if tl < l:
            tl += x

        tr = (r+1)//x*x+y
        if tr <= r:
            tr += x
        
        # print(x,y,l,r,tl,tr)
        if tl < M:
            imos[tl] += 1
        
        if tr < M:
            imos[tr] -= 1

    
    for i in range(M):
        nums[i] += imos[i]
        if i+x < M:
            imos[i+x] += imos[i]


for x,y,l,r in large:
    tl = l//x*x+y
    if tl < l:
        tl += x

    tr = (r+1)//x*x+y
    if tr <= r:
        tr += x

    tr = min(tr,M)
    for p in range(tl,tr,x):
        nums[p] += 1

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