結果

問題 No.2758 RDQ
ユーザー ゼットゼット
提出日時 2024-05-17 21:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 204,356 KB
最終ジャッジ日時 2024-12-20 15:38:04
合計ジャッジ時間 11,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 474 ms
94,720 KB
testcase_01 AC 45 ms
61,520 KB
testcase_02 AC 46 ms
61,600 KB
testcase_03 AC 46 ms
61,080 KB
testcase_04 AC 46 ms
60,748 KB
testcase_05 AC 49 ms
61,540 KB
testcase_06 AC 629 ms
202,232 KB
testcase_07 AC 639 ms
204,356 KB
testcase_08 AC 610 ms
200,720 KB
testcase_09 AC 660 ms
202,964 KB
testcase_10 AC 625 ms
202,008 KB
testcase_11 AC 554 ms
95,708 KB
testcase_12 AC 561 ms
95,844 KB
testcase_13 AC 546 ms
95,768 KB
testcase_14 AC 555 ms
95,720 KB
testcase_15 AC 576 ms
95,816 KB
testcase_16 AC 568 ms
95,728 KB
testcase_17 AC 539 ms
95,724 KB
testcase_18 AC 549 ms
95,640 KB
testcase_19 AC 582 ms
95,848 KB
testcase_20 AC 560 ms
95,684 KB
testcase_21 AC 47 ms
61,000 KB
testcase_22 AC 45 ms
61,524 KB
testcase_23 AC 48 ms
61,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))
G=[[] for i in range(10**5+1)]
from math import sqrt
for i in range(N):
  x=A[i]
  B=set()
  k=int(sqrt(x))
  for y in range(1,k+1):
    if x%y==0:
      B.add(x//y)
      B.add(y)
  for y in B:
    G[y].append(i)
from bisect import bisect_right
for i in range(Q):
  l,r,K=map(int,input().split())
  result=bisect_right(G[K],r-1)-bisect_right(G[K],l-2)
  print(result)
0