結果

問題 No.2758 RDQ
ユーザー i_takui_taku
提出日時 2024-05-17 22:35:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 189,088 KB
最終ジャッジ日時 2024-05-17 22:35:36
合計ジャッジ時間 12,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,980 KB
testcase_01 AC 44 ms
60,932 KB
testcase_02 AC 43 ms
61,016 KB
testcase_03 AC 43 ms
62,040 KB
testcase_04 AC 42 ms
62,276 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
61,084 KB
testcase_21 AC 41 ms
61,556 KB
testcase_22 AC 40 ms
55,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left


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

M = 250
LIMIT = 10**5
# k <= M
D = [[0] * (N + 1) for _ in range(M + 1)]
for i in range(1, M + 1):
    for j, a in enumerate(A):
        if a % i == 0:
            D[i][j + 1] += 1
        D[i][j + 1] += D[i][j]
# k > M
idx = defaultdict(list)
for i, a in enumerate(A):
    idx[a].append(i)

for _ in range(Q):
    l, r, k = map(int, input().split())
    l -= 1
    if k <= M:
        print(D[k][r] - D[k][l])
    else:
        ans = 0
        d = 1
        while k * d <= LIMIT:
            if k * d in idx:
                li = bisect_left(idx[k * d], l)
                ri = bisect_left(idx[k * d], r)
                ans += ri - li + 1
            d += 1
        print(ans)
0