結果

問題 No.2891 Mint
ユーザー hongrockhongrock
提出日時 2024-09-13 22:32:58
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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 80 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 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 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 60 ms
5,376 KB
testcase_18 AC 36 ms
5,376 KB
testcase_19 AC 32 ms
5,376 KB
testcase_20 AC 53 ms
5,376 KB
testcase_21 AC 32 ms
5,376 KB
testcase_22 AC 65 ms
5,376 KB
testcase_23 AC 25 ms
5,376 KB
testcase_24 AC 52 ms
5,376 KB
testcase_25 AC 73 ms
5,376 KB
testcase_26 AC 70 ms
5,376 KB
testcase_27 AC 65 ms
5,376 KB
testcase_28 AC 75 ms
5,376 KB
testcase_29 AC 33 ms
5,376 KB
testcase_30 AC 56 ms
5,376 KB
testcase_31 AC 35 ms
5,376 KB
testcase_32 AC 60 ms
5,376 KB
testcase_33 AC 44 ms
5,376 KB
testcase_34 AC 47 ms
5,376 KB
testcase_35 AC 54 ms
5,376 KB
testcase_36 AC 57 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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