結果
問題 | No.1349 Subset Product Queries |
ユーザー | 00 Sakuda |
提出日時 | 2024-03-30 18:39:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 2,330 ms |
コンパイル使用メモリ | 206,764 KB |
実行使用メモリ | 96,000 KB |
最終ジャッジ日時 | 2024-09-30 17:40:02 |
合計ジャッジ時間 | 16,169 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/segtree> using namespace atcoder; using namespace std; using ll = long long; int main() { int N, Q, P;cin >> N >> Q >> P; vector<vector<int>> dp(N + 1, vector<int>(P, 0)); vector<int> A(N + 1); for (int i = 1;i <= N;i++) cin >> A[i]; dp[1][A[1]] = 1; for (int i = 1;i < N;i++) { int nxt = A[i + 1]; for (int j = 0;j < P;j++) dp[i + 1][(j * nxt) % A[i]] = max(dp[i + 1][(j * nxt) % P], dp[i][j]); dp[i + 1][nxt] = max(dp[i + 1][nxt], i + 1); } while (Q--) { int l, r, k;cin >> l >>r >> k; cout << (dp[r][k] >= l ? "Yes" : "No") << endl; } }