結果

問題 No.2359 A in S ?
ユーザー meruuu61779999meruuu61779999
提出日時 2023-06-24 07:50:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 261,244 KB
最終ジャッジ日時 2024-07-01 11:12:11
合計ジャッジ時間 14,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
251,748 KB
testcase_01 AC 450 ms
250,588 KB
testcase_02 AC 442 ms
251,524 KB
testcase_03 AC 430 ms
249,708 KB
testcase_04 AC 656 ms
260,800 KB
testcase_05 AC 680 ms
260,648 KB
testcase_06 AC 555 ms
260,172 KB
testcase_07 AC 629 ms
260,068 KB
testcase_08 AC 634 ms
259,152 KB
testcase_09 AC 605 ms
259,948 KB
testcase_10 AC 635 ms
260,752 KB
testcase_11 AC 606 ms
260,460 KB
testcase_12 AC 649 ms
261,244 KB
testcase_13 AC 614 ms
261,132 KB
testcase_14 AC 600 ms
260,928 KB
testcase_15 AC 582 ms
260,448 KB
testcase_16 AC 664 ms
260,688 KB
testcase_17 AC 588 ms
260,832 KB
testcase_18 AC 597 ms
260,564 KB
testcase_19 AC 615 ms
261,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math


# xで割ったあまりがyになる自然数の中で、n以上で最小のものを返す関数
def f(n, x, y):
    mo = n % x
    if mo <= y:
        return n + y - mo
    else:
        return n + x + y - mo


# xで割ったあまりがyになる自然数の中で、n以下で最大のものを返す関数
def g(n, x, y):
    mo = n % x
    if y <= mo:
        return n + y - mo
    else:
        return n - x + y - mo


N, M = map(int, input().split())
sq = math.isqrt(10 ** 5)
higher = []
lower = [[] for _ in range(sq)]
for _ in range(N):
    l, r, x, y = map(int, input().split())
    if x < sq:
        lower[x].append((y, l, r))
    else:
        higher.append((l, r, x, y))

line = [0] * (10 ** 5 + 1)

for l, r, x, y in higher:
    start = f(l, x, y)
    end = g(r, x, y)
    for i in range(start, end + 1, x):
        line[i] += 1

for x, gr in enumerate(lower):
    x_line = [0] * (10 ** 5 + 1)
    for y, l, r in gr:
        start = f(l, x, y)
        end = g(r, x, y) + x
        x_line[start] += 1
        try:
            x_line[end] -= 1
        except IndexError:
            pass
    for i in range(x, 10 ** 5 + 1):
        x_line[i] += x_line[i - x]

    for i in range(10 ** 5 + 1):
        line[i] += x_line[i]

A = list(map(int, input().split()))
for a in A:
    print(line[a])
0