結果

問題 No.2758 RDQ
ユーザー ゼットゼット
提出日時 2024-05-17 21:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 204,444 KB
最終ジャッジ日時 2024-05-17 23:42:53
合計ジャッジ時間 9,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 406 ms
94,832 KB
testcase_01 AC 38 ms
61,928 KB
testcase_02 AC 38 ms
61,652 KB
testcase_03 AC 37 ms
60,880 KB
testcase_04 AC 39 ms
62,096 KB
testcase_05 AC 38 ms
60,712 KB
testcase_06 AC 515 ms
202,460 KB
testcase_07 AC 552 ms
204,444 KB
testcase_08 AC 521 ms
200,824 KB
testcase_09 AC 534 ms
202,956 KB
testcase_10 AC 715 ms
201,940 KB
testcase_11 AC 459 ms
95,812 KB
testcase_12 AC 465 ms
95,908 KB
testcase_13 AC 472 ms
95,964 KB
testcase_14 AC 475 ms
95,288 KB
testcase_15 AC 477 ms
95,984 KB
testcase_16 AC 466 ms
96,116 KB
testcase_17 AC 461 ms
95,760 KB
testcase_18 AC 460 ms
96,108 KB
testcase_19 AC 461 ms
95,980 KB
testcase_20 AC 476 ms
96,136 KB
testcase_21 AC 38 ms
62,212 KB
testcase_22 AC 39 ms
61,356 KB
testcase_23 AC 37 ms
62,052 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