結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
97,260 KB
testcase_01 AC 43 ms
55,328 KB
testcase_02 AC 48 ms
54,632 KB
testcase_03 AC 44 ms
54,136 KB
testcase_04 AC 43 ms
54,344 KB
testcase_05 AC 44 ms
55,216 KB
testcase_06 AC 688 ms
188,212 KB
testcase_07 AC 685 ms
189,640 KB
testcase_08 AC 677 ms
187,496 KB
testcase_09 AC 673 ms
189,204 KB
testcase_10 AC 662 ms
189,416 KB
testcase_11 AC 631 ms
99,904 KB
testcase_12 AC 661 ms
99,992 KB
testcase_13 AC 632 ms
100,364 KB
testcase_14 AC 627 ms
99,844 KB
testcase_15 AC 623 ms
99,756 KB
testcase_16 AC 598 ms
99,696 KB
testcase_17 AC 601 ms
99,792 KB
testcase_18 AC 633 ms
99,760 KB
testcase_19 AC 623 ms
100,044 KB
testcase_20 AC 618 ms
99,840 KB
testcase_21 AC 48 ms
54,340 KB
testcase_22 AC 47 ms
54,396 KB
testcase_23 AC 47 ms
54,380 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