結果

問題 No.2891 Mint
ユーザー noiminoimi
提出日時 2024-09-13 21:54:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,652 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 202,648 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 21:54:23
合計ジャッジ時間 5,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 71 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
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 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 55 ms
5,376 KB
testcase_38 AC 51 ms
5,376 KB
testcase_39 AC 63 ms
5,376 KB
testcase_40 AC 66 ms
5,376 KB
testcase_41 AC 37 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 62 ms
5,376 KB
testcase_48 AC 61 ms
5,376 KB
testcase_49 AC 71 ms
5,376 KB
testcase_50 AC 21 ms
5,376 KB
testcase_51 AC 52 ms
5,376 KB
testcase_52 AC 20 ms
5,376 KB
testcase_53 AC 43 ms
5,376 KB
testcase_54 AC 48 ms
5,376 KB
testcase_55 AC 12 ms
5,376 KB
testcase_56 AC 71 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define ov4(a, b, c, d, name, ...) name
#define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep2(i, a, b) rep3(i, a, b, 1)
#define rep1(i, n) rep2(i, 0, n)
#define rep0(n) rep1(aaaaa, n)
#define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--)
#define fore(e, v) for(auto &&e : v)
#define all(a) begin(a), end(a)
#define si(a) (int)(size(a))
#define lb(v, x) (lower_bound(all(v), x) - begin(v))
#define eb emplace_back

template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; }
template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; }

const int INF = 1e9 + 100;
const ll INFL = 3e18 + 100;

#define i128 __int128_t

struct _ {
    _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); }
} __;

int rnd(int l, int r) {
    mt19937_64 mt(time(NULL));
    return uniform_int_distribution<int>(l, r - 1)(mt);
}

const ll mod = 998244353;

int main() {
    ll n, m;
    cin >> n >> m;
    ll ans = 0;
    if(n > m) {
        ans += (n - m) % mod * m % mod;
        n = m;
    }
    ans += n % mod * m % mod;

    ll d = 1;
    ll pre = 1;
    while(d) {
        ll l = m / (d + 1) + 1, r = m / d;
        chmin(r, n);
        if(l <= r) ans -= d * (l + r) % mod * (r - l + 1) % mod * ((mod + 1) / 2) % mod;
        if(l == 1) break;
        d = m / (l - 1);
        pre = l - 1;
    }
    cout << (ans % mod + mod) % mod << endl;
}
0