結果

問題 No.2931 Shibuya 109
ユーザー t98slidert98slider
提出日時 2024-10-12 16:14:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 4,000 ms
コード長 592 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 202,864 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-12 16:15:04
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
5,248 KB
testcase_01 AC 148 ms
7,040 KB
testcase_02 AC 142 ms
7,040 KB
testcase_03 AC 160 ms
7,296 KB
testcase_04 AC 169 ms
7,168 KB
testcase_05 AC 148 ms
7,168 KB
testcase_06 AC 143 ms
7,168 KB
testcase_07 AC 35 ms
5,248 KB
testcase_08 AC 101 ms
5,248 KB
testcase_09 AC 111 ms
5,248 KB
testcase_10 AC 131 ms
7,040 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, Q;
    cin >> n >> Q;
    vector<int> a(n), b, sv(n + 1);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        sv[i + 1] = sv[i] + (a[i] == 9);
        if(a[i] == 1) b.emplace_back(i);
    }
    while(Q--){
        int l, r;
        cin >> l >> r;
        l--;
        int ans = sv[r] - sv[l];
        for(int i = 0; i < b.size() && b[i] < r; i++){
            if(b[i] < l) continue;
            ans += r - (b[i] + 1);
        }
        cout << ans << '\n';
    }
}
0