結果

問題 No.752 mod数列
ユーザー jupirojupiro
提出日時 2020-05-19 11:34:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,674 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 127,172 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-10-01 22:37:50
合計ジャッジ時間 9,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
81,664 KB
testcase_01 AC 127 ms
81,664 KB
testcase_02 AC 127 ms
81,664 KB
testcase_03 AC 126 ms
81,536 KB
testcase_04 AC 128 ms
81,664 KB
testcase_05 AC 128 ms
81,792 KB
testcase_06 AC 127 ms
81,664 KB
testcase_07 AC 127 ms
81,536 KB
testcase_08 AC 126 ms
81,664 KB
testcase_09 AC 126 ms
81,536 KB
testcase_10 AC 129 ms
81,664 KB
testcase_11 AC 128 ms
81,664 KB
testcase_12 AC 128 ms
81,664 KB
testcase_13 AC 127 ms
81,664 KB
testcase_14 AC 129 ms
81,664 KB
testcase_15 AC 153 ms
81,664 KB
testcase_16 AC 156 ms
81,664 KB
testcase_17 AC 366 ms
81,664 KB
testcase_18 AC 160 ms
81,792 KB
testcase_19 AC 163 ms
81,664 KB
testcase_20 AC 173 ms
81,664 KB
testcase_21 AC 172 ms
81,664 KB
testcase_22 AC 174 ms
81,664 KB
testcase_23 AC 177 ms
81,664 KB
testcase_24 AC 172 ms
81,664 KB
testcase_25 AC 233 ms
81,664 KB
testcase_26 AC 313 ms
81,664 KB
testcase_27 AC 225 ms
81,792 KB
testcase_28 AC 288 ms
81,664 KB
testcase_29 AC 222 ms
81,664 KB
testcase_30 AC 318 ms
81,788 KB
testcase_31 AC 127 ms
81,664 KB
testcase_32 AC 125 ms
81,792 KB
testcase_33 AC 127 ms
81,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;
long double PI = acos(-1);

using namespace std;
typedef unsigned long long ull;
typedef long long ll;


ll sum[10000001];
ll P, Q;

ll solve(ll x) {
	ll res = P * x;
	if (x <= 10000000) res -= sum[x];
	else {
		res -= sum[10000000];
		ll i = 1;
		for (;; i++) {
			ll lf = max(P / (i + 1) + 1, 10000001LL);
			ll rg = min(P / i, x);
			//cout << x << " " << lf << " " << rg << endl;
			if (rg <= 10000000) break;
			if (lf > rg) continue;

			res -= i * (lf + rg) * (rg - lf + 1) / 2;
		}
	}
	return res;
}
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	scanf("%lld %lld", &P, &Q);
	for (ll i = 1; i <= 10000000; i++) {
		sum[i] = sum[i - 1];
		sum[i] += P / i * i;
	}
	while (Q--) {
		ll l, r; scanf("%lld %lld", &l, &r);
		l--;
		ll res = solve(r);
		if (l) res -= solve(l);
		printf("%lld\n", res);
	}
	return 0;

}
0