結果
問題 | No.2758 RDQ |
ユーザー | Kei |
提出日時 | 2024-05-17 22:12:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 2,747 ms |
コンパイル使用メモリ | 218,724 KB |
実行使用メモリ | 814,080 KB |
最終ジャッジ日時 | 2024-05-17 22:13:02 |
合計ジャッジ時間 | 18,389 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | MLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { int N, Q; cin >> N >> Q; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<map<int, int>> X(N + 1); for (int i = 0; i < N; i++) { if (i) { X[i + 1] = X[i]; } int B = A[i]; vector<int> P; for (int j = 2; (long long)j * j <= B; j++) { if (B % j == 0) { while (B % j == 0) { P.push_back(j); B /= j; } } } if (B > 1) { P.push_back(B); } int M = P.size(); set<int> st; for (int j = 0; j < (1 << M); j++) { int mul = 1; for (int k = 0; k < M; k++) { if (j >> k & 1) { mul *= P[k]; } } st.insert(mul); } for (int w : st) { X[i + 1][w]++; } } while (Q--) { int L, R, K; cin >> L >> R >> K; //cout << X[L - 1][K] << ' ' << X[R][K] << endl; cout << X[R][K] - X[L - 1][K] << endl; } }