結果

問題 No.2758 RDQ
ユーザー 👑 rin204rin204
提出日時 2024-05-18 00:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 92,504 KB
最終ジャッジ日時 2024-05-18 00:39:49
合計ジャッジ時間 11,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
90,568 KB
testcase_01 AC 39 ms
53,196 KB
testcase_02 AC 38 ms
53,808 KB
testcase_03 AC 37 ms
53,464 KB
testcase_04 AC 38 ms
52,388 KB
testcase_05 AC 38 ms
53,292 KB
testcase_06 AC 565 ms
92,376 KB
testcase_07 AC 585 ms
92,280 KB
testcase_08 AC 554 ms
92,460 KB
testcase_09 AC 589 ms
92,248 KB
testcase_10 AC 505 ms
92,284 KB
testcase_11 AC 516 ms
91,652 KB
testcase_12 AC 510 ms
92,292 KB
testcase_13 AC 516 ms
92,504 KB
testcase_14 AC 531 ms
92,400 KB
testcase_15 AC 508 ms
92,408 KB
testcase_16 AC 522 ms
92,256 KB
testcase_17 AC 576 ms
92,244 KB
testcase_18 AC 536 ms
92,036 KB
testcase_19 AC 509 ms
92,264 KB
testcase_20 AC 553 ms
92,416 KB
testcase_21 AC 38 ms
53,216 KB
testcase_22 AC 38 ms
52,896 KB
testcase_23 AC 38 ms
52,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
A = list(map(int, input().split()))
add = [[] for _ in range(n)]
sub = [[] for _ in range(n)]
for i in range(Q):
    l, r, k = map(int, input().split())
    sub[l - 1].append((i, k))
    add[r - 1].append((i, k))

ma = max(A)
cnt0 = [0] * (ma + 1)
cnt1 = [0] * (ma + 1)
B = int(ma**0.5)


def f(x):
    if x < B:
        return cnt0[x]
    else:
        tot = 0
        for i in range(x, ma + 1, x):
            tot += cnt1[i]
        return tot


ans = [0] * Q
for i, a in enumerate(A):
    for j, k in sub[i]:
        ans[j] -= f(k)

    cnt1[a] += 1
    for j in range(1, B):
        if a % j == 0:
            cnt0[j] += 1

    for j, k in add[i]:
        ans[j] += f(k)

print(*ans, sep="\n")
0