結果

問題 No.2931 Shibuya 109
ユーザー nouka28nouka28
提出日時 2024-10-11 23:08:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,363 ms / 4,000 ms
コード長 626 bytes
コンパイル時間 6,228 ms
コンパイル使用メモリ 309,348 KB
実行使用メモリ 11,408 KB
最終ジャッジ日時 2024-10-11 23:08:57
合計ジャッジ時間 23,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 818 ms
5,248 KB
testcase_01 AC 1,062 ms
7,168 KB
testcase_02 AC 1,115 ms
9,360 KB
testcase_03 AC 1,363 ms
11,408 KB
testcase_04 AC 1,327 ms
9,488 KB
testcase_05 AC 1,148 ms
9,356 KB
testcase_06 AC 1,147 ms
9,268 KB
testcase_07 AC 203 ms
6,308 KB
testcase_08 AC 928 ms
5,248 KB
testcase_09 AC 928 ms
6,328 KB
testcase_10 AC 933 ms
9,428 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;

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

signed main(){
	int n,q;cin>>n>>q;

	vector<int> a(n);for(auto&&e:a)cin>>e;

	vector<int> v,vv;

	for(int i=0;i<n;i++){
		if(a[i]==1){
			v.push_back(i);
		}
		if(a[i]==9){
			vv.push_back(i);
		}
	}

	while(q--){
		int l,r;cin>>l>>r;l--;

		int ans=lower_bound(vv.begin(),vv.end(),r)-lower_bound(vv.begin(),vv.end(),l);

		for(auto&&e:v){
			if(l<=e&&e<r){
				ans+=r-e-1;
			}
		}

		cout<<ans<<endl;
	}
}
0