結果

問題 No.2758 RDQ
ユーザー hato336hato336
提出日時 2024-05-17 21:28:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 207,160 KB
最終ジャッジ日時 2024-05-17 23:43:10
合計ジャッジ時間 11,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
111,180 KB
testcase_01 AC 112 ms
85,856 KB
testcase_02 AC 110 ms
86,028 KB
testcase_03 AC 115 ms
85,980 KB
testcase_04 AC 114 ms
85,984 KB
testcase_05 AC 118 ms
85,864 KB
testcase_06 AC 584 ms
205,572 KB
testcase_07 AC 603 ms
207,160 KB
testcase_08 AC 588 ms
205,096 KB
testcase_09 AC 604 ms
206,076 KB
testcase_10 AC 594 ms
206,036 KB
testcase_11 AC 553 ms
114,164 KB
testcase_12 AC 550 ms
113,816 KB
testcase_13 AC 549 ms
114,168 KB
testcase_14 AC 550 ms
113,880 KB
testcase_15 AC 552 ms
113,196 KB
testcase_16 AC 547 ms
113,820 KB
testcase_17 AC 543 ms
113,936 KB
testcase_18 AC 550 ms
113,800 KB
testcase_19 AC 587 ms
114,064 KB
testcase_20 AC 544 ms
113,972 KB
testcase_21 AC 110 ms
85,852 KB
testcase_22 AC 110 ms
86,020 KB
testcase_23 AC 110 ms
85,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
#s = input()
def make_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())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
alist = list(map(int,input().split()))
c = collections.defaultdict(list)
for i in range(n):
    y = make_divisors(alist[i])
    for j in y:
        c[j].append(i)
for i in range(q):
    l,r,k = map(int,input().split())
    l -= 1
    r -= 1
    le = bisect.bisect_left(c[k],l) 
    ri = bisect.bisect_right(c[k],r)

    print(ri-le)
0