結果

問題 No.2758 RDQ
ユーザー mkawa2mkawa2
提出日時 2024-05-17 21:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,165 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 243,052 KB
最終ジャッジ日時 2024-05-17 23:44:11
合計ジャッジ時間 18,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 841 ms
242,736 KB
testcase_01 AC 43 ms
63,900 KB
testcase_02 AC 42 ms
63,160 KB
testcase_03 AC 41 ms
64,428 KB
testcase_04 AC 39 ms
63,228 KB
testcase_05 AC 40 ms
64,912 KB
testcase_06 AC 1,165 ms
240,952 KB
testcase_07 AC 1,139 ms
240,828 KB
testcase_08 AC 1,146 ms
240,956 KB
testcase_09 AC 1,152 ms
240,952 KB
testcase_10 AC 1,143 ms
241,072 KB
testcase_11 AC 986 ms
242,804 KB
testcase_12 AC 972 ms
240,732 KB
testcase_13 AC 974 ms
240,856 KB
testcase_14 AC 963 ms
241,164 KB
testcase_15 AC 906 ms
242,796 KB
testcase_16 AC 966 ms
241,204 KB
testcase_17 AC 952 ms
243,052 KB
testcase_18 AC 970 ms
242,540 KB
testcase_19 AC 953 ms
242,800 KB
testcase_20 AC 961 ms
240,920 KB
testcase_21 AC 41 ms
65,348 KB
testcase_22 AC 41 ms
64,032 KB
testcase_23 AC 39 ms
61,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from bisect import bisect_left

mx=10**5
n,q=LI()
aa=LI()
s=round(mx**0.5)
cs=[[]]
for k in range(1,s):
    cur=[0]
    for a in aa:
        cur.append(cur[-1]+(a%k==0))
    cs.append(cur)
a2i=[[] for _ in range(mx+1)]
for i,a in enumerate(aa):a2i[a].append(i)
for a in aa:a2i[a].sort()

for _ in range(q):
    l,r,k=LI()
    l-=1
    ans=0
    if k<s:
        ans=cs[k][r]-cs[k][l]
    else:
        for a in range(k,mx+1,k):
            i=bisect_left(a2i[a],l)
            j=bisect_left(a2i[a],r)
            ans+=j-i
    print(ans)
0