結果
問題 | No.2758 RDQ |
ユーザー | 👑 rin204 |
提出日時 | 2024-05-18 00:38:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 721 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,540 KB |
実行使用メモリ | 93,088 KB |
最終ジャッジ日時 | 2024-05-18 00:38:45 |
合計ジャッジ時間 | 10,046 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 36 ms
53,128 KB |
ソースコード
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)