結果

問題 No.2758 RDQ
ユーザー FromBooskaFromBooska
提出日時 2024-05-18 12:32:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 197,152 KB
最終ジャッジ日時 2024-05-18 12:33:05
合計ジャッジ時間 11,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
95,520 KB
testcase_01 AC 44 ms
60,636 KB
testcase_02 AC 44 ms
60,928 KB
testcase_03 AC 43 ms
60,800 KB
testcase_04 AC 43 ms
60,544 KB
testcase_05 AC 42 ms
60,416 KB
testcase_06 AC 575 ms
195,456 KB
testcase_07 AC 582 ms
196,816 KB
testcase_08 AC 569 ms
195,620 KB
testcase_09 AC 550 ms
197,152 KB
testcase_10 AC 554 ms
196,064 KB
testcase_11 AC 548 ms
97,224 KB
testcase_12 AC 522 ms
97,580 KB
testcase_13 AC 553 ms
96,768 KB
testcase_14 AC 521 ms
96,896 KB
testcase_15 AC 559 ms
96,776 KB
testcase_16 AC 520 ms
97,024 KB
testcase_17 AC 528 ms
97,128 KB
testcase_18 AC 556 ms
97,136 KB
testcase_19 AC 524 ms
96,828 KB
testcase_20 AC 551 ms
97,212 KB
testcase_21 AC 43 ms
60,544 KB
testcase_22 AC 43 ms
60,672 KB
testcase_23 AC 43 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 約数列挙とmultisetではTLE
# 約数列挙とbisect

def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

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

multiple_list = [[] for i in range(10**5+1)]

for i in range(N):
    divs = divisors(A[i])
    for d in divs:
        multiple_list[d].append(i+1)

from bisect import bisect_left, bisect_right

for q in range(Q):
    l, r, k = map(int, input().split())
    upper = bisect_left(multiple_list[k], r+1)
    lower = bisect_left(multiple_list[k], l)
    ans = upper-lower
    print(ans)
    #print('upper', upper, 'lower', lower)




0