結果

問題 No.2891 Mint
ユーザー hongrockhongrock
提出日時 2024-09-13 22:32:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 200,460 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 22:33:14
合計ジャッジ時間 4,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define pb emplace_back
#define mp make_pair
 
using ll = long long;
using pii = pair<int,int>;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr int N = 2e5 + 10;

ll n, m, inv;
ll pow_mod(ll x, ll p){
  ll s = 1;
  while(p){
    if(p & 1) s = s * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return s;
}
ll mul(ll x, ll y){
  return (x % mod) * (y % mod) % mod;
}
ll sum(ll l, ll r){
  return mul(l + r, r - l + 1) * inv % mod;
}

void _main(){
  inv = pow_mod(2, mod - 2);
  cin >> n >> m;
  ll ans = 0;
  if(n > m){
    ans = mul(m, n - m);
  }
  ll lim = min(n, m);
  for(ll i=1; i<=lim; ){
    ll p = m / i;
    ll r = min(lim, m / p);
    ans += mul(r - i + 1, m) - mul(sum(i, r), p);
    i = r + 1;
  }
  ans = (ans % mod + mod) % mod;
  cout << ans << '\n';
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0