結果

問題 No.2758 RDQ
ユーザー 👑 binapbinap
提出日時 2024-05-05 14:02:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 202,592 KB
最終ジャッジ日時 2024-05-17 23:42:06
合計ジャッジ時間 10,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
95,924 KB
testcase_01 AC 38 ms
60,756 KB
testcase_02 AC 37 ms
60,948 KB
testcase_03 AC 38 ms
61,872 KB
testcase_04 AC 39 ms
61,164 KB
testcase_05 AC 38 ms
62,040 KB
testcase_06 AC 501 ms
202,200 KB
testcase_07 AC 489 ms
202,592 KB
testcase_08 AC 496 ms
195,664 KB
testcase_09 AC 487 ms
196,732 KB
testcase_10 AC 476 ms
201,444 KB
testcase_11 AC 526 ms
97,396 KB
testcase_12 AC 528 ms
97,028 KB
testcase_13 AC 536 ms
97,344 KB
testcase_14 AC 509 ms
97,052 KB
testcase_15 AC 538 ms
96,948 KB
testcase_16 AC 509 ms
96,780 KB
testcase_17 AC 534 ms
96,724 KB
testcase_18 AC 533 ms
97,268 KB
testcase_19 AC 534 ms
97,292 KB
testcase_20 AC 526 ms
97,044 KB
testcase_21 AC 39 ms
62,604 KB
testcase_22 AC 37 ms
61,712 KB
testcase_23 AC 38 ms
61,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

M = 100000
R = 330

def enum_divisors(x):
    res = []
    for i in range(1, R+1):
        if x % i == 0:
            square = i * i
            if x > square:
                res.extend([i, x // i])
            elif x == square:
                res.append(i)
            else:
                break
    return res

n, q = map(int, input().split())
a = list(map(int, input().split()))

cnt = [[] for _ in range(M + 1)]

for i in range(n):
    divisors = enum_divisors(a[i])
    for x in divisors:
        cnt[x].append(i)

for _ in range(q):
    l, r, k = map(int, input().split())
    l -= 1
    r -= 1
    li = bisect.bisect_left(cnt[k], l)
    ri = bisect.bisect_right(cnt[k], r)
    print(ri - li)
0