結果

問題 No.2758 RDQ
ユーザー moon17moon17
提出日時 2024-05-17 23:05:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 155,344 KB
最終ジャッジ日時 2024-05-17 23:46:18
合計ジャッジ時間 10,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
98,004 KB
testcase_01 AC 47 ms
61,260 KB
testcase_02 AC 44 ms
62,340 KB
testcase_03 AC 44 ms
61,376 KB
testcase_04 AC 47 ms
62,288 KB
testcase_05 AC 44 ms
61,352 KB
testcase_06 AC 479 ms
153,964 KB
testcase_07 AC 554 ms
154,392 KB
testcase_08 AC 492 ms
153,804 KB
testcase_09 AC 466 ms
155,344 KB
testcase_10 AC 465 ms
154,764 KB
testcase_11 AC 494 ms
99,400 KB
testcase_12 AC 536 ms
99,492 KB
testcase_13 AC 572 ms
99,532 KB
testcase_14 AC 519 ms
99,896 KB
testcase_15 AC 511 ms
99,416 KB
testcase_16 AC 568 ms
99,568 KB
testcase_17 AC 639 ms
99,408 KB
testcase_18 AC 572 ms
99,360 KB
testcase_19 AC 582 ms
99,324 KB
testcase_20 AC 575 ms
99,292 KB
testcase_21 AC 56 ms
61,868 KB
testcase_22 AC 53 ms
61,720 KB
testcase_23 AC 53 ms
61,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*
(n,q),a,*e=[[*map(int,s.split())]for s in open(0)]
m=10**5+1
d=[[]for _ in range(m)]
for i in range(n):
  for j in range(1,int(a[i]**0.5)+1):
    if a[i]%j==0:
      k=a[i]//j
      if j<=m:
        d[j]+=i,
      if j!=k and k<=m:
        d[k]+=i,
for l,r,k in e:
  ans=bisect_right(d[k],r-1)-bisect_left(d[k],l-1)
  print(ans)
0