結果

問題 No.2758 RDQ
ユーザー トミートミー
提出日時 2024-05-17 21:58:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 172,156 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-17 21:58:28
合計ジャッジ時間 5,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<long long>;

ll query(ll l,ll r,ll k, vll &a){
    ll cnt=0;
    for(ll i=l-1;i<r;i++){
        if(a[i]%k==0) cnt+=1;
    }
    return cnt;
}

int main() { 
    ll n,q;
    cin>>n>>q;
    vll a(n);
    for(ll i=0;i<n;i++) cin>>a[i];
    vll result;
    for(ll i=0;i<q;i++){
        ll l,r,k;
        cin>>l>>r>>k;
        result.push_back(query(l,r,k,a));
    }
    for(ll i=0;i<result.size();i++) cout<<result[i]<<endl;
    system("pause");
    
}
0