結果

問題 No.2758 RDQ
ユーザー ntudantuda
提出日時 2024-05-18 00:16:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 190,464 KB
最終ジャッジ日時 2024-05-18 00:16:26
合計ジャッジ時間 12,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 425 ms
94,696 KB
testcase_01 AC 44 ms
61,192 KB
testcase_02 AC 44 ms
61,100 KB
testcase_03 AC 43 ms
62,416 KB
testcase_04 AC 44 ms
60,932 KB
testcase_05 AC 49 ms
61,300 KB
testcase_06 AC 618 ms
188,084 KB
testcase_07 AC 668 ms
190,464 KB
testcase_08 AC 620 ms
187,080 KB
testcase_09 AC 655 ms
188,492 KB
testcase_10 AC 656 ms
188,404 KB
testcase_11 AC 601 ms
97,772 KB
testcase_12 AC 519 ms
97,584 KB
testcase_13 AC 555 ms
97,712 KB
testcase_14 AC 581 ms
97,464 KB
testcase_15 AC 607 ms
97,364 KB
testcase_16 AC 624 ms
97,228 KB
testcase_17 AC 591 ms
97,576 KB
testcase_18 AC 574 ms
97,576 KB
testcase_19 AC 599 ms
97,708 KB
testcase_20 AC 571 ms
97,248 KB
testcase_21 AC 49 ms
61,920 KB
testcase_22 AC 50 ms
62,244 KB
testcase_23 AC 50 ms
61,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def make_divisors(n):
    divisors = []
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n // i)
        i += 1
    divisors.sort()
    return divisors

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = [[] for _ in range(10 ** 5 + 1)]
for i, a in enumerate(A, start=1):
    for d in make_divisors(a):
        B[d].append(i)
for _ in range(Q):
    L, R, K = map(int, input().split())
    if K == 1:
        print(R - L + 1)
        continue
    if B[K]:
        l = bisect_left(B[K], L)
        r = bisect_right(B[K], R)
        print(r - l)
    else:
        print(0)
0