結果

問題 No.2961 Shiny Monster Master
ユーザー 沙耶花沙耶花
提出日時 2024-11-16 15:34:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 1,777 ms
コード長 663 bytes
コンパイル時間 4,224 ms
コンパイル使用メモリ 260,360 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-16 15:34:39
合計ジャッジ時間 8,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 6 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 23 ms
7,040 KB
testcase_06 AC 13 ms
9,772 KB
testcase_07 AC 22 ms
8,064 KB
testcase_08 AC 36 ms
10,240 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 37 ms
10,112 KB
testcase_11 AC 30 ms
9,088 KB
testcase_12 AC 22 ms
9,992 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 35 ms
10,312 KB
testcase_15 AC 33 ms
6,784 KB
testcase_16 AC 12 ms
8,832 KB
testcase_17 AC 29 ms
5,248 KB
testcase_18 AC 35 ms
7,424 KB
testcase_19 AC 37 ms
6,932 KB
testcase_20 AC 36 ms
10,112 KB
testcase_21 AC 37 ms
9,680 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 30 ms
5,376 KB
testcase_24 AC 16 ms
5,248 KB
testcase_25 AC 30 ms
9,344 KB
testcase_26 AC 38 ms
8,832 KB
testcase_27 AC 24 ms
6,528 KB
testcase_28 AC 24 ms
7,936 KB
testcase_29 AC 12 ms
6,824 KB
testcase_30 AC 35 ms
10,900 KB
testcase_31 AC 28 ms
8,704 KB
testcase_32 AC 28 ms
8,872 KB
testcase_33 AC 42 ms
9,420 KB
testcase_34 AC 23 ms
8,756 KB
testcase_35 AC 40 ms
9,556 KB
testcase_36 AC 15 ms
9,064 KB
testcase_37 AC 37 ms
6,656 KB
testcase_38 AC 17 ms
8,004 KB
testcase_39 AC 24 ms
9,832 KB
testcase_40 AC 21 ms
7,180 KB
testcase_41 AC 9 ms
6,272 KB
testcase_42 AC 38 ms
8,192 KB
testcase_43 AC 10 ms
5,248 KB
testcase_44 AC 42 ms
7,552 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 18 ms
5,248 KB
testcase_47 AC 25 ms
10,880 KB
testcase_48 AC 10 ms
10,552 KB
testcase_49 AC 15 ms
6,656 KB
testcase_50 AC 33 ms
9,472 KB
testcase_51 AC 23 ms
5,248 KB
testcase_52 AC 19 ms
7,188 KB
testcase_53 AC 17 ms
7,528 KB
testcase_54 AC 9 ms
5,248 KB
testcase_55 AC 30 ms
10,460 KB
testcase_56 AC 34 ms
7,168 KB
testcase_57 AC 22 ms
6,528 KB
testcase_58 AC 19 ms
7,824 KB
testcase_59 AC 35 ms
8,272 KB
testcase_60 AC 25 ms
5,632 KB
testcase_61 AC 20 ms
6,528 KB
testcase_62 AC 44 ms
10,752 KB
testcase_63 AC 27 ms
10,904 KB
testcase_64 AC 22 ms
5,248 KB
testcase_65 AC 37 ms
8,280 KB
testcase_66 AC 3 ms
5,248 KB
testcase_67 AC 5 ms
5,248 KB
testcase_68 AC 3 ms
5,248 KB
testcase_69 AC 4 ms
5,248 KB
testcase_70 AC 4 ms
5,248 KB
testcase_71 AC 3 ms
5,248 KB
testcase_72 AC 5 ms
5,248 KB
testcase_73 AC 5 ms
5,248 KB
testcase_74 AC 47 ms
11,008 KB
testcase_75 AC 46 ms
11,008 KB
testcase_76 AC 47 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL
long long get(long long n,vector<long long> &sum){
	long long res = 0;
	long long R = sum.size();
	res = n/R * sum.back();
	n %= R;
	res += sum[n];
	return res;
}
int main(){
	int R,N;
	cin>>R>>N;
	vector<long long> sum(R);
	rep(i,N){
		int a;
		cin>>a;
		sum[a]++;
	}
	rep(i,R-1)sum[i+1] += sum[i];
	int q;
	cin>>q;
	rep(_,q){
		int l,r;
		cin>>l>>r;
		cout<<get(r,sum) - get(l-1,sum)<<endl;
		
	}
	return 0;
}
0