結果

問題 No.2758 RDQ
ユーザー noriocnorioc
提出日時 2024-05-18 01:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 730 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 217,096 KB
最終ジャッジ日時 2024-12-20 15:57:34
合計ジャッジ時間 12,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 489 ms
98,664 KB
testcase_01 AC 45 ms
55,792 KB
testcase_02 AC 44 ms
54,748 KB
testcase_03 AC 45 ms
54,200 KB
testcase_04 AC 43 ms
55,316 KB
testcase_05 AC 45 ms
55,316 KB
testcase_06 AC 729 ms
215,968 KB
testcase_07 AC 728 ms
217,096 KB
testcase_08 AC 716 ms
215,544 KB
testcase_09 AC 730 ms
216,396 KB
testcase_10 AC 719 ms
215,136 KB
testcase_11 AC 606 ms
101,872 KB
testcase_12 AC 609 ms
101,496 KB
testcase_13 AC 600 ms
101,824 KB
testcase_14 AC 603 ms
101,176 KB
testcase_15 AC 615 ms
101,644 KB
testcase_16 AC 618 ms
101,320 KB
testcase_17 AC 605 ms
101,016 KB
testcase_18 AC 610 ms
101,824 KB
testcase_19 AC 613 ms
101,416 KB
testcase_20 AC 608 ms
101,408 KB
testcase_21 AC 42 ms
55,540 KB
testcase_22 AC 45 ms
54,800 KB
testcase_23 AC 45 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left, bisect_right


def divisors(n: int) -> list:
    s = set()
    p = 1
    while p * p <= n:
        if n % p == 0:
            s.add(p)
            s.add(n // p)
        p += 1
    return sorted(s)


def find_interval(a: list, lo: int, hi: int) -> tuple[int, int, int]:
    assert lo <= hi
    empty = 0, -1, -1  # 区間なし
    if not a or lo > a[-1] or hi < a[0]: return empty

    l = bisect_left(a, lo)
    r = bisect_right(a, hi) - 1
    if l > r: return empty
    return r-l+1, l, r


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

d = defaultdict(list)
for i, a in enumerate(A):
    for x in divisors(a):
        d[x].append(i)

for _ in range(Q):
    L, R, K = map(int, input().split())
    L -= 1
    R -= 1
    t = d[K]
    cnt, _, _ = find_interval(d[K], L, R)
    print(cnt)
0