結果

問題 No.2758 RDQ
ユーザー yansi819yansi819
提出日時 2024-05-28 13:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 181,104 KB
最終ジャッジ日時 2024-05-28 13:12:21
合計ジャッジ時間 11,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 395 ms
95,440 KB
testcase_01 AC 31 ms
53,416 KB
testcase_02 AC 31 ms
53,588 KB
testcase_03 AC 32 ms
53,568 KB
testcase_04 AC 32 ms
52,596 KB
testcase_05 AC 33 ms
52,788 KB
testcase_06 AC 604 ms
179,376 KB
testcase_07 AC 584 ms
181,104 KB
testcase_08 AC 528 ms
179,508 KB
testcase_09 AC 508 ms
179,228 KB
testcase_10 AC 571 ms
179,956 KB
testcase_11 AC 536 ms
97,376 KB
testcase_12 AC 463 ms
97,184 KB
testcase_13 AC 470 ms
97,244 KB
testcase_14 AC 499 ms
96,896 KB
testcase_15 AC 502 ms
96,816 KB
testcase_16 AC 546 ms
96,932 KB
testcase_17 AC 473 ms
97,304 KB
testcase_18 AC 461 ms
97,116 KB
testcase_19 AC 508 ms
96,964 KB
testcase_20 AC 532 ms
97,256 KB
testcase_21 AC 35 ms
52,204 KB
testcase_22 AC 33 ms
53,320 KB
testcase_23 AC 33 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
def divisors(N):
    res = []
    for i in range(1, int(N ** 0.5) + 1):
        if N % i == 0:
            res.append(i)
            if i * i != N: res.append(N // i)
    return res

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

D = {}
for i in range(len(A)):
    div = divisors(A[i])
    for d in div:
        D.setdefault(d, [])
        D[d].append(i)
for _ in range(Q):
    L, R, K = map(int, input().split())
    L -= 1
    R -= 1
    if K in D:
        C = D[K]
    else:
        C = []
    cnt = bisect_right(C, R) - bisect_left(C, L)
    print(cnt)
0