結果

問題 No.2891 Mint
ユーザー V_MelvilleV_Melville
提出日時 2024-09-20 04:59:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 5,242 ms
コンパイル使用メモリ 308,544 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 04:59:59
合計ジャッジ時間 11,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using ll = long long;
using mint = modint998244353;

int main() {
    ll n, m;
    cin >> n >> m;
    
    mint ans = mint(n)*m;
    for (ll i = 1; i <= n; ++i) {
        ll t = m/i;
        ll j = t ? min(m/t, n) : n;
        ans -= mint(j-i+1)*t*(i+j)/2;
        i = j;
    }
    
    cout << ans.val() << '\n';
    
    return 0;
}
0