結果

問題 No.2758 RDQ
ユーザー CecilCecil
提出日時 2024-05-17 21:45:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 189,536 KB
最終ジャッジ日時 2024-05-17 23:44:34
合計ジャッジ時間 10,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
97,044 KB
testcase_01 AC 38 ms
54,708 KB
testcase_02 AC 36 ms
55,456 KB
testcase_03 AC 36 ms
54,400 KB
testcase_04 AC 37 ms
54,468 KB
testcase_05 AC 36 ms
55,312 KB
testcase_06 AC 548 ms
188,260 KB
testcase_07 AC 550 ms
189,536 KB
testcase_08 AC 543 ms
187,712 KB
testcase_09 AC 540 ms
189,268 KB
testcase_10 AC 545 ms
189,180 KB
testcase_11 AC 502 ms
99,904 KB
testcase_12 AC 488 ms
99,848 KB
testcase_13 AC 493 ms
100,268 KB
testcase_14 AC 487 ms
99,880 KB
testcase_15 AC 493 ms
99,704 KB
testcase_16 AC 486 ms
99,692 KB
testcase_17 AC 488 ms
99,812 KB
testcase_18 AC 480 ms
99,824 KB
testcase_19 AC 490 ms
100,084 KB
testcase_20 AC 488 ms
100,008 KB
testcase_21 AC 37 ms
54,372 KB
testcase_22 AC 36 ms
55,180 KB
testcase_23 AC 37 ms
54,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
import bisect

def div(N):
    res = []
    for i in range(1, N+1):
        if i*i>N:
            break
        if N%i!=0:
            continue
        res.append(i)
        if N//i != i:
            res.append(N//i)
    res.sort()
    return res

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

for i in range(N):
    res = div(A[i])
    #print(res)
    for val in res:
        div_idx[val].append(i)

#print(div_idx)
for _ in range(Q):
    l,r,k = map(int, input().split())
    ll = bisect.bisect_left(div_idx[k],l-1)
    rr = bisect.bisect_right(div_idx[k],r-1)
    print(rr-ll)
0