結果

問題 No.2961 Shiny Monster Master
ユーザー shobonvipshobonvip
提出日時 2024-11-16 19:36:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 1,777 ms
コード長 1,544 bytes
コンパイル時間 4,592 ms
コンパイル使用メモリ 261,092 KB
実行使用メモリ 11,128 KB
最終ジャッジ日時 2024-11-16 19:37:07
合計ジャッジ時間 6,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 10 ms
7,296 KB
testcase_06 AC 14 ms
9,660 KB
testcase_07 AC 9 ms
8,064 KB
testcase_08 AC 14 ms
10,312 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 13 ms
10,020 KB
testcase_11 AC 10 ms
9,152 KB
testcase_12 AC 9 ms
10,032 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 12 ms
10,368 KB
testcase_15 AC 10 ms
6,784 KB
testcase_16 AC 7 ms
8,704 KB
testcase_17 AC 9 ms
5,248 KB
testcase_18 AC 12 ms
7,424 KB
testcase_19 AC 11 ms
7,024 KB
testcase_20 AC 13 ms
10,124 KB
testcase_21 AC 14 ms
9,616 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 AC 12 ms
9,560 KB
testcase_26 AC 12 ms
8,888 KB
testcase_27 AC 10 ms
6,528 KB
testcase_28 AC 10 ms
8,032 KB
testcase_29 AC 6 ms
6,816 KB
testcase_30 AC 15 ms
11,128 KB
testcase_31 AC 10 ms
8,704 KB
testcase_32 AC 11 ms
8,912 KB
testcase_33 AC 13 ms
9,472 KB
testcase_34 AC 9 ms
8,780 KB
testcase_35 AC 14 ms
9,600 KB
testcase_36 AC 7 ms
8,960 KB
testcase_37 AC 14 ms
6,656 KB
testcase_38 AC 7 ms
7,936 KB
testcase_39 AC 10 ms
9,888 KB
testcase_40 AC 8 ms
7,168 KB
testcase_41 AC 5 ms
6,400 KB
testcase_42 AC 12 ms
8,188 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 12 ms
7,648 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 6 ms
5,248 KB
testcase_47 AC 12 ms
10,816 KB
testcase_48 AC 8 ms
10,496 KB
testcase_49 AC 6 ms
6,528 KB
testcase_50 AC 13 ms
9,528 KB
testcase_51 AC 7 ms
5,248 KB
testcase_52 AC 8 ms
7,124 KB
testcase_53 AC 7 ms
7,608 KB
testcase_54 AC 4 ms
5,248 KB
testcase_55 AC 12 ms
10,540 KB
testcase_56 AC 12 ms
7,116 KB
testcase_57 AC 8 ms
6,656 KB
testcase_58 AC 9 ms
7,808 KB
testcase_59 AC 15 ms
8,320 KB
testcase_60 AC 9 ms
5,504 KB
testcase_61 AC 8 ms
6,784 KB
testcase_62 AC 17 ms
10,676 KB
testcase_63 AC 12 ms
10,880 KB
testcase_64 AC 7 ms
5,248 KB
testcase_65 AC 12 ms
8,304 KB
testcase_66 AC 2 ms
5,248 KB
testcase_67 AC 2 ms
5,248 KB
testcase_68 AC 2 ms
5,248 KB
testcase_69 AC 2 ms
5,248 KB
testcase_70 AC 2 ms
5,248 KB
testcase_71 AC 2 ms
5,248 KB
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
5,248 KB
testcase_74 AC 18 ms
11,008 KB
testcase_75 AC 17 ms
11,008 KB
testcase_76 AC 19 ms
11,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.11.16 19:35:10
**/

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	ll r, n; cin >> r >> n;
	vector<ll> rui(r+1);
	rep(i,0,n) {
		ll a; cin >> a;
		rui[a+1] += 1;
	}
	rep(i,0,r) {
		rui[i+1] += rui[i];
	}

	auto calc = [&](ll t) -> ll {
		ll f = t / r;
		ll g = t % r;
		return f * rui[r] + rui[g];
	};

	int q; cin >> q;
	while(q--){
		ll l, r; cin >> l >> r;
		r += 1;
		cout << calc(r) - calc(l) << '\n';
	}
}


0