結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 658 ms
189,412 KB
testcase_01 AC 52 ms
61,492 KB
testcase_02 AC 51 ms
61,492 KB
testcase_03 AC 51 ms
61,228 KB
testcase_04 AC 50 ms
60,872 KB
testcase_05 AC 51 ms
61,064 KB
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 WA -
testcase_21 AC 53 ms
61,796 KB
testcase_22 AC 51 ms
61,548 KB
testcase_23 AC 46 ms
54,648 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