結果
問題 | No.2758 RDQ |
ユーザー | futamegawa |
提出日時 | 2024-05-17 23:23:29 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 2,988 ms |
コンパイル使用メモリ | 250,088 KB |
実行使用メモリ | 813,824 KB |
最終ジャッジ日時 | 2024-05-17 23:23:35 |
合計ジャッジ時間 | 5,657 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 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 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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; using ll = long long; using llu = long long unsigned; #define MOD 100000000 int main() { int n, q; cin >> n >> q; vector<int> a(n); for (auto &y : a) { cin >> y; } vector<int> l(q), r(q), k(q); for (int i=0; i<q; ++i) { cin >> l[i] >> r[i] >> k[i]; } vector<vector<int>> tmp(q, vector<int>(n+1)); for (int i=0; i<q; ++i) { for (int j=1; j<=n; ++j) { tmp[i][j] = tmp[i][j-1]; if (a[j-1]%k[i]==0) { tmp[i][j]++; } } } for (int i=0; i<q; ++i) { int count = tmp[i][r[i]] - tmp[i][l[i]-1]; cout << count << endl; } return 0; }