結果

問題 No.2758 RDQ
ユーザー detteiuudetteiuu
提出日時 2024-05-17 22:37:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 431 bytes
コンパイル時間 3,077 ms
コンパイル使用メモリ 245,708 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-17 22:38:17
合計ジャッジ時間 41,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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.at(i);
    }

    for (int i=0; i<Q; i++) {
        int L, R, K;
        cin >> L >> R >> K;
        int cnt = 0;
        for (int j=L-1; j<R; j++) {
            if (A.at(j)%K == 0) {
                cnt ++;
            }
        }
        cout << cnt << endl;
    }
}
0