結果
問題 | No.2758 RDQ |
ユーザー | GOTKAKO |
提出日時 | 2024-05-17 21:28:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 204,536 KB |
実行使用メモリ | 620,872 KB |
最終ジャッジ日時 | 2024-05-17 21:28:24 |
合計ジャッジ時間 | 5,681 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 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; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,Q; cin >> N >> Q; vector<bitset<100001>> ok(N); for(int i=0; i<N; i++){ int a; cin >> a; for(int k=1; k*k<=a; k++){ if(a%k) continue; ok.at(i).set(k); ok.at(i).set(a/k); } } while(Q--){ int l,r,k; cin >> l >> r >> k; int answer = 0; for(int i=l-1; i<r; i++) if(ok.at(i).test(k)) answer++; cout << answer << "\n"; } }