結果
問題 | No.2127 Mod, Sum, Sum, Mod |
ユーザー | milanis48663220 |
提出日時 | 2022-11-18 23:38:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 2,394 bytes |
コンパイル時間 | 1,326 ms |
コンパイル使用メモリ | 127,472 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-20 04:05:25 |
合計ジャッジ時間 | 2,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 9 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 5 ms
6,944 KB |
testcase_22 | AC | 9 ms
6,940 KB |
testcase_23 | AC | 9 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 3 ms
6,944 KB |
testcase_26 | AC | 4 ms
6,940 KB |
testcase_27 | AC | 5 ms
6,940 KB |
testcase_28 | AC | 9 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/modint> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; 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; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } using mint = atcoder::modint998244353; ostream& operator<<(ostream& os, const mint& m){ os << m.val(); return os; } vector<int> f(int n){ vector<int> v; for(int x = 1; x*x <= n; x++){ v.push_back(x); if(x*x != n) v.push_back(n/x); } sort(v.begin(), v.end()); return v; } mint inv6 = mint(6).inv(); mint inv2 = mint(2).inv(); mint sum(int n){ return mint(n)*mint(n+1)*inv2; } mint sum_sect(int l, int r){ return sum(r)-sum(l-1); } mint sum_square(int n){ return mint(n)*mint(n+1)*mint(2*n+1)*inv6; } // [l, r] mint sum_square_sect(int l, int r){ return sum_square(r)-sum_square(l-1); } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, m; cin >> n >> m; mint ans = mint(n)*mint(n+1)*mint(m)/2; auto v = f(n+1); reverse(v.begin(), v.end()); int pre = 0; for(int x: v){ int l = pre+1; int r = (n+1)/x; chmin(r, m); if(r < l) continue; ans -= sum_square_sect(l, r)*sum(x-1); ans -= sum_sect(l, r)*(n+1)*x; ans += sum_square_sect(l, r)*x*x; pre = r; } cout << ans << endl; }