結果
問題 | No.2127 Mod, Sum, Sum, Mod |
ユーザー | shadow9236 |
提出日時 | 2022-11-18 22:53:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 14,032 bytes |
コンパイル時間 | 2,529 ms |
コンパイル使用メモリ | 217,784 KB |
実行使用メモリ | 6,644 KB |
最終ジャッジ日時 | 2024-09-20 03:21:52 |
合計ジャッジ時間 | 3,497 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 54 ms
6,644 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 42 ms
6,644 KB |
testcase_22 | AC | 53 ms
6,520 KB |
testcase_23 | AC | 53 ms
6,520 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 13 ms
5,376 KB |
testcase_26 | AC | 14 ms
5,376 KB |
testcase_27 | AC | 42 ms
6,528 KB |
testcase_28 | AC | 52 ms
6,400 KB |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
// हर हर महादेव using namespace std; #include <bits/stdc++.h> #define ll long long int #define ld long double #define uid(a, b) uniform_int_distribution<int>(a, b)(rng) mt19937 rng((unsigned int) chrono::steady_clock::now().time_since_epoch().count()); #ifdef shivang_ka_laptop #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__); #define booga cerr << "booga" << endl; #else #define debug(...) 42; #define booga 9; #endif template <typename T> std::ostream& operator<<(std::ostream& stream, const vector<T>& vec){ for(size_t i = 0; i < vec.size(); i++){stream << vec[i];if(i != vec.size() - 1)stream << ' ';}; return stream; } template <typename T> std::istream& operator>>(std::istream& stream, vector<T>& vec) { for(T &x : vec)stream >> x;return stream; } template <typename T,typename U> std::ostream& operator<<(std::ostream& stream, const pair<T,U>& pr){ stream << pr.first << ' ' << pr.second; return stream; } template <typename T,typename U> std::istream& operator>>(std::istream& stream, pair<T,U>& pr){ stream >> pr.first >> pr.second; return stream; } template <typename T, typename U> void operator+=(vector<T>& vec, const U value) { for(T &x : vec)x += value; } template <typename T, typename U> void operator-=(vector<T>& vec, const U value) { for(T &x : vec)x -= value; } template <typename T, typename U> void operator*=(vector<T>& vec, const U value) { for(T &x : vec)x *= value; } template <typename T, typename U> void operator/=(vector<T>& vec, const U value) { for(T &x : vec)x /= value; } template <typename T> void operator++(vector<T>& vec) { vec += 1; } template <typename T> void operator++(vector<T>& vec,int) { vec += 1; } template <typename T> void operator--(vector<T>& vec) { vec -= 1; } template <typename T> void operator--(vector<T>& vec,int) { vec -= 1; } template <typename T,typename U, typename V> void operator+=(pair<T,U>& vec, const V value) { vec.first += value;vec.second += value; } template <typename T,typename U, typename V> void operator-=(pair<T,U>& vec, const V value) { vec.first -= value;vec.second -= value; } template <typename T,typename U, typename V> void operator*=(pair<T,U>& vec, const V value) { vec.first *= value;vec.second *= value; } template <typename T,typename U, typename V> void operator/=(pair<T,U>& vec, const V value) { vec.first /= value;vec.second /= value; } template <typename T,typename U> void operator++(pair<T,U>& vec) { vec += 1; } template <typename T,typename U> void operator++(pair<T,U>& vec,int) { vec += 1; } template <typename T,typename U> void operator--(pair<T,U>& vec) { vec -= 1; } template <typename T,typename U> void operator--(pair<T,U>& vec,int) { vec -= 1; } template <typename A, typename B>string to_string(pair<A, B> p); template <typename A, typename B, typename C>string to_string(tuple<A, B, C> p); template <typename A, typename B, typename C, typename D>string to_string(tuple<A, B, C, D> p); string to_string(const string& s) { return '"' + s + '"'; } string to_string(char c) {string s;s += c;return s; } string to_string(const char* s) {return to_string((string) s); } string to_string(bool b) {return (b ? "1" : "0"); } string to_string(vector<bool> v) {bool first = true;string res = "{";for (int i = 0; i < static_cast<int>(v.size()); i++) {if (!first) {res += ", ";}first = false;res += to_string(v[i]);}res += "}";return res;} template <size_t N>string to_string(bitset<N> v) {string res = "";for (size_t i = 0; i < N; i++) {res += static_cast<char>('0' + v[i]);}return res;} template <typename A>string to_string(A v) {bool first = true;string res = "{";for (const auto &x : v) {if (!first) {res += ", ";}first = false;res += to_string(x);}res += "}";return res;} template <typename A, typename B>string to_string(pair<A, B> p) {return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";} template <typename A, typename B, typename C>string to_string(tuple<A, B, C> p) {return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ")";} template <typename A, typename B, typename C, typename D> string to_string(tuple<A, B, C, D> p) {return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ", " + to_string(get<3>(p)) + ")";} template<class T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; } template<class T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; } void debug_out() { cerr << endl; } template <typename Head, typename... Tail>void debug_out(Head H, Tail... T) {cerr << " " << to_string(H);debug_out(T...);} void bharo(int N_N) { return; }template <typename Head, typename... Tail>void bharo(int N_N, Head &H, Tail & ... T) {H.resize(N_N);bharo(N_N,T...);} void safai() { return; }template <typename Head, typename... Tail>void safai(Head &H, Tail & ... T) {H.clear();safai(T...);} template <typename T> T inverse(T a, T m) { T u = 0, v = 1; while (a != 0) { T t = m / a; m -= t * a; swap(a, m); u -= t * v; swap(u, v); } assert(m == 1); return u; } template <typename T> class Modular { public: using Type = typename decay<decltype(T::value)>::type; constexpr Modular() : value() {} template <typename U> Modular(const U& x) { value = normalize(x); } template <typename U> static Type normalize(const U& x) { Type v; if (-mod() <= x && x < mod()) v = static_cast<Type>(x); else v = static_cast<Type>(x % mod()); if (v < 0) v += mod(); return v; } const Type& operator()() const { return value; } template <typename U> explicit operator U() const { return static_cast<U>(value); } constexpr static Type mod() { return T::value; } Modular& operator+=(const Modular& other) { if ((value += other.value) >= mod()) value -= mod(); return *this; } Modular& operator-=(const Modular& other) { if ((value -= other.value) < 0) value += mod(); return *this; } template <typename U> Modular& operator+=(const U& other) { return *this += Modular(other); } template <typename U> Modular& operator-=(const U& other) { return *this -= Modular(other); } Modular& operator++() { return *this += 1; } Modular& operator--() { return *this -= 1; } Modular operator++(int) { Modular result(*this); *this += 1; return result; } Modular operator--(int) { Modular result(*this); *this -= 1; return result; } Modular operator-() const { return Modular(-value); } template <typename U = T> typename enable_if<is_same<typename Modular<U>::Type, int>::value, Modular>::type& operator*=(const Modular& rhs) { #ifdef _WIN32 uint64_t x = static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value); uint32_t xh = static_cast<uint32_t>(x >> 32), xl = static_cast<uint32_t>(x), d, m; asm( "divl %4; " : "=a" (d), "=d" (m) : "d" (xh), "a" (xl), "r" (mod()) ); value = m; #else value = normalize(static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value)); #endif return *this; } template <typename U = T> typename enable_if<is_same<typename Modular<U>::Type, long long>::value, Modular>::type& operator*=(const Modular& rhs) { long long q = static_cast<long long>(static_cast<long double>(value) * rhs.value / mod()); value = normalize(value * rhs.value - q * mod()); return *this; } template <typename U = T> typename enable_if<!is_integral<typename Modular<U>::Type>::value, Modular>::type& operator*=(const Modular& rhs) { value = normalize(value * rhs.value); return *this; } Modular& operator/=(const Modular& other) { return *this *= Modular(inverse(other.value, mod())); } friend const Type& abs(const Modular& x) { return x.value; } template <typename U> friend bool operator==(const Modular<U>& lhs, const Modular<U>& rhs); template <typename U> friend bool operator<(const Modular<U>& lhs, const Modular<U>& rhs); template <typename V, typename U> friend V& operator>>(V& stream, Modular<U>& number); private: Type value; }; template <typename T> bool operator==(const Modular<T>& lhs, const Modular<T>& rhs) { return lhs.value == rhs.value; } template <typename T, typename U> bool operator==(const Modular<T>& lhs, U rhs) { return lhs == Modular<T>(rhs); } template <typename T, typename U> bool operator==(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) == rhs; } template <typename T> bool operator!=(const Modular<T>& lhs, const Modular<T>& rhs) { return !(lhs == rhs); } template <typename T, typename U> bool operator!=(const Modular<T>& lhs, U rhs) { return !(lhs == rhs); } template <typename T, typename U> bool operator!=(U lhs, const Modular<T>& rhs) { return !(lhs == rhs); } template <typename T> bool operator<(const Modular<T>& lhs, const Modular<T>& rhs) { return lhs.value < rhs.value; } template <typename T> Modular<T> operator+(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) += rhs; } template <typename T, typename U> Modular<T> operator+(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) += rhs; } template <typename T, typename U> Modular<T> operator+(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) += rhs; } template <typename T> Modular<T> operator-(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) -= rhs; } template <typename T, typename U> Modular<T> operator-(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) -= rhs; } template <typename T, typename U> Modular<T> operator-(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) -= rhs; } template <typename T> Modular<T> operator*(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) *= rhs; } template <typename T, typename U> Modular<T> operator*(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) *= rhs; } template <typename T, typename U> Modular<T> operator*(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) *= rhs; } template <typename T> Modular<T> operator/(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) /= rhs; } template <typename T, typename U> Modular<T> operator/(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) /= rhs; } template <typename T, typename U> Modular<T> operator/(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) /= rhs; } template<typename T, typename U> Modular<T> power(const Modular<T>& a, const U& b) { assert(b >= 0); Modular<T> x = a, res = 1; U p = b; while (p > 0) { if (p & 1) res *= x; x *= x; p >>= 1; } return res; } template <typename T> bool IsZero(const Modular<T>& number) { return number() == 0; } template <typename T> string to_string(const Modular<T>& number) { return to_string(number()); } // U == std::ostream? but done this way because of fastoutput template <typename U, typename T> U& operator<<(U& stream, const Modular<T>& number) { return stream << number(); } // U == std::istream? but done this way because of fastinput template <typename U, typename T> U& operator>>(U& stream, Modular<T>& number) { typename common_type<typename Modular<T>::Type, long long>::type x; stream >> x; number.value = Modular<T>::normalize(x); return stream; } //using ModType = int; //struct VarMod { static ModType value; }; //ModType VarMod::value; //ModType& md = VarMod::value; //using Mint = Modular<VarMod>; //constexpr int md = (int) 1e9 + 7; constexpr int md = 998244353; using Mint = Modular<std::integral_constant<decay<decltype(md)>::type, md>>; Mint power(int x,const long long int y){ return power(Mint(x),y); } /* vector<Mint> fact(1, 1); vector<Mint> inv_fact(1, 1); const int MXN = ; void prep(){ // Don't forget to call this to use nCr fact.resize(MXN); inv_fact.resize(MXN); fact[0] = 1; for(int i = 1; i < MXN; i++){ fact[i] = fact[i-1]*i; } inv_fact[MXN-1] = power(fact[MXN-1],md-2); for(int i = MXN-2; i >= 0; i--){ inv_fact[i] = inv_fact[i+1]*(i+1); } } Mint C(int n, int k) { if (k < 0 || k > n) { return 0; } while ((int) fact.size() < n + 1) { fact.push_back(fact.back() * (int) fact.size()); inv_fact.push_back(1 / fact.back()); } return fact[n] * inv_fact[k] * inv_fact[n - k]; } */ Mint sum(int n){ if(n <= 0){ return 0; } return (Mint)n * (n + 1) / 2; } Mint sumsq(int n){ return (Mint)n * (n + 1) * (Mint)(2*n + 1) / 6; } Mint sumsum(int n){ if(n <= 0){ return 0; } Mint tot = sumsq(n); tot += sum(n); tot /= 2; return tot; } Mint sumsum(int l,int r){ return sumsum(r) - sumsum(l-1); } vector<int> get(int n){ set<int> all; for(int i = 1; i*i <= n; i++){ all.insert(i); all.insert(n / i); } return vector<int>(all.begin(),all.end()); } int low(int n,int k){ int l = 1,r = n,ans = -1; while(l <= r){ int m = (l + r) >> 1; int v = n / m; if(v <= k){ ans = m; r = m - 1; } else{ l = m + 1; } } return ans; } int high(int n,int k){ int l = 1,r = n,ans = -1; while(l <= r){ int m = (l + r) >> 1; int v = n / m; if(v >= k){ ans = m; l = m + 1; } else{ r = m - 1; } } return ans; } vector<array<int,3>> rang(int n){ auto a = get(n); vector<array<int,3>> res; for(int x : a){ int l = low(n,x),r = high(n,x); res.push_back({x,l,r}); } return res; } Mint super(Mint a,Mint d,int n){ Mint ans = 0; ans += n * a * a; ans += a * d * sum(n-1); ans += a * n; ans += a * d * sum(n-1); ans += d * d * sumsq(n-1); ans += d * sum(n-1); ans /= 2; return ans; } void testcase(){ int n,m; //#ifdef shivang_ka_laptop //n = uid(1,10); //m = uid(1,10); //#endif cin >> n >> m; Mint ans = 0; auto res = rang(n); for(auto p : res){ int x = p[0],l = p[1],r = p[2]; if(l > m){ continue; } if(r >= m){ r = m; } ans += (Mint)x * sumsum(l-1,r-1); } Mint ans2 = 0; for(auto p : res){ int x = p[0],l = p[1],r = p[2]; if(l > m){ continue; } if(r >= m){ r = m; } int a = n % r; int d = x; int term = r - l + 1; Mint tmp = super(a,d,term); ans2 += tmp; } if(m > n){ ans2 += (Mint)sum(n) * (m-n); } cout << ans + ans2; } int main(){ ios::sync_with_stdio(false); cin.tie(0); int tt = 1; //cin >> tt; while(tt--){ testcase(); } return (0-0); }