結果

問題 No.2758 RDQ
ユーザー FromBooskaFromBooska
提出日時 2024-05-18 09:20:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 589 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 168,396 KB
最終ジャッジ日時 2024-12-20 16:10:58
合計ジャッジ時間 26,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 61 ms
77,316 KB
testcase_02 AC 60 ms
166,764 KB
testcase_03 AC 68 ms
85,568 KB
testcase_04 AC 64 ms
168,396 KB
testcase_05 AC 63 ms
77,564 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 337 ms
91,148 KB
testcase_12 AC 371 ms
91,404 KB
testcase_13 AC 344 ms
91,392 KB
testcase_14 AC 351 ms
91,804 KB
testcase_15 AC 335 ms
92,156 KB
testcase_16 AC 420 ms
94,392 KB
testcase_17 AC 447 ms
92,816 KB
testcase_18 AC 337 ms
91,924 KB
testcase_19 AC 366 ms
92,348 KB
testcase_20 AC 374 ms
91,572 KB
testcase_21 AC 62 ms
73,228 KB
testcase_22 AC 65 ms
75,692 KB
testcase_23 AC 52 ms
158,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# naiveでは間に合わない
# 倍数の性質を利用したが、ループが多すぎるか
# range queryというタイトルだがセグ木には合わないか

from collections import defaultdict

N, Q = map(int, input().split())
a_max = 10**5
A = list(map(int, input().split()))

pos = defaultdict(list)
for i in range(N):
    pos[A[i]].append(i+1)
    
#print(pos)

for q in range(Q):
    l, r, k = map(int, input().split())
    ans = 0
    for num in range(k, a_max+1, k):
        for n in pos[num]:
            if l <= n <= r:
                ans += 1
    print(ans)
    



0