結果

問題 No.2758 RDQ
ユーザー noriocnorioc
提出日時 2024-05-18 01:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 217,060 KB
最終ジャッジ日時 2024-05-18 01:03:26
合計ジャッジ時間 13,727 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 491 ms
98,916 KB
testcase_01 AC 42 ms
54,268 KB
testcase_02 AC 44 ms
54,432 KB
testcase_03 AC 42 ms
55,616 KB
testcase_04 AC 43 ms
54,592 KB
testcase_05 AC 43 ms
54,120 KB
testcase_06 AC 746 ms
216,108 KB
testcase_07 AC 763 ms
217,060 KB
testcase_08 AC 720 ms
215,520 KB
testcase_09 AC 742 ms
216,636 KB
testcase_10 AC 713 ms
215,532 KB
testcase_11 AC 652 ms
101,752 KB
testcase_12 AC 641 ms
101,496 KB
testcase_13 AC 637 ms
101,564 KB
testcase_14 AC 618 ms
101,396 KB
testcase_15 AC 645 ms
101,596 KB
testcase_16 AC 610 ms
101,292 KB
testcase_17 AC 641 ms
101,160 KB
testcase_18 AC 609 ms
102,080 KB
testcase_19 AC 634 ms
101,428 KB
testcase_20 AC 608 ms
101,276 KB
testcase_21 AC 44 ms
53,808 KB
testcase_22 AC 43 ms
55,324 KB
testcase_23 AC 43 ms
55,640 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