結果
問題 | No.752 mod数列 |
ユーザー | はまやんはまやん |
提出日時 | 2018-11-10 08:21:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,646 bytes |
コンパイル時間 | 1,463 ms |
コンパイル使用メモリ | 171,704 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-02 00:51:57 |
合計ジャッジ時間 | 4,118 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,948 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 32 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 37 ms
6,940 KB |
testcase_21 | AC | 36 ms
6,944 KB |
testcase_22 | AC | 38 ms
6,940 KB |
testcase_23 | AC | 39 ms
6,940 KB |
testcase_24 | AC | 41 ms
6,940 KB |
testcase_25 | AC | 14 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 26 ms
6,940 KB |
testcase_28 | AC | 32 ms
6,944 KB |
testcase_29 | WA | - |
testcase_30 | AC | 47 ms
6,940 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() #pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int P, Q, RP, A[101010]; ll B[101010], C[101010]; vector<pair<int, int>> v; //--------------------------------------------------------------------------------------------------- ll g(int L, int R) { int n = R - L + 1; return 1LL * (L + R) * n / 2; } //--------------------------------------------------------------------------------------------------- ll f(int x) { if (x <= RP) return B[x]; ll res = B[RP]; if (P < x) { res += 1LL * P * (x - P); x = P; } int id = upper_bound(all(v), make_pair(x, -1)) - v.begin() - 1; res += C[id]; int l = v[id].first + 1; int r = x; if (l <= r) { int n = r - l + 1; res += 1LL * n * P; res -= g(l, r) * v[id+1].second; } return res; } //--------------------------------------------------------------------------------------------------- void _main() { cin >> P >> Q; for (RP = 1; RP * RP <= P; RP++) A[RP] = P / RP; RP--; rep(i, 1, RP+1) B[i] = B[i - 1] + P % i; rrep(i, RP, 1) v.push_back({ A[i], i }); int n = v.size(); rep(i, 1, n) { C[i] = C[i - 1]; int l = v[i - 1].first + 1; int r = v[i].first; int n = r - l + 1; C[i] += 1LL * n * P; C[i] -= g(l, r) * v[i].second; } rep(q, 0, Q) { int L, R; cin >> L >> R; ll ans = f(R) - f(L - 1); printf("%lld\n", ans); } }