結果

問題 No.2359 A in S ?
ユーザー ニックネームニックネーム
提出日時 2023-06-24 01:35:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 111,508 KB
最終ジャッジ日時 2024-07-01 05:17:12
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,672 KB
testcase_01 AC 54 ms
60,288 KB
testcase_02 AC 61 ms
66,176 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 211 ms
93,032 KB
testcase_05 AC 302 ms
111,508 KB
testcase_06 AC 214 ms
93,092 KB
testcase_07 AC 200 ms
94,976 KB
testcase_08 AC 804 ms
111,032 KB
testcase_09 AC 184 ms
93,156 KB
testcase_10 AC 271 ms
111,248 KB
testcase_11 AC 287 ms
110,940 KB
testcase_12 AC 209 ms
93,292 KB
testcase_13 AC 198 ms
93,184 KB
testcase_14 AC 205 ms
93,292 KB
testcase_15 AC 178 ms
92,780 KB
testcase_16 AC 208 ms
93,164 KB
testcase_17 AC 190 ms
93,540 KB
testcase_18 AC 188 ms
92,264 KB
testcase_19 AC 197 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
xylr = defaultdict(list); z = 10**5; a = [0]*(z+1)
for _ in range(n):
    l,r,x,y = map(int,input().split())
    xylr[(x,y)].append((l,r))
for (x,y),lr in xylr.items():
    d = defaultdict(int); s = 0; i = y
    for l,r in lr: d[l+(y-l)%x] += 1; d[r+1+(y-r-1)%x] -= 1
    while i<=z:
        if i in d: s += d[i]
        a[i] += s; i += x
for v in map(int,input().split()): print(a[v])
0