結果

問題 No.2891 Mint
ユーザー ooaiuooaiu
提出日時 2024-12-16 10:49:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,775 ms / 2,000 ms
コード長 1,424 bytes
コンパイル時間 3,443 ms
コンパイル使用メモリ 267,564 KB
実行使用メモリ 26,716 KB
最終ジャッジ日時 2024-12-16 10:49:40
合計ジャッジ時間 28,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1,775 ms
26,716 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1,286 ms
23,872 KB
testcase_18 AC 722 ms
13,760 KB
testcase_19 AC 664 ms
13,632 KB
testcase_20 AC 1,154 ms
23,872 KB
testcase_21 AC 602 ms
13,632 KB
testcase_22 AC 1,416 ms
23,868 KB
testcase_23 AC 489 ms
13,632 KB
testcase_24 AC 1,140 ms
23,872 KB
testcase_25 AC 1,595 ms
24,512 KB
testcase_26 AC 1,489 ms
23,872 KB
testcase_27 AC 1,398 ms
23,872 KB
testcase_28 AC 1,678 ms
25,284 KB
testcase_29 AC 677 ms
13,764 KB
testcase_30 AC 1,168 ms
24,000 KB
testcase_31 AC 724 ms
13,632 KB
testcase_32 AC 1,280 ms
23,872 KB
testcase_33 AC 931 ms
23,876 KB
testcase_34 AC 939 ms
23,744 KB
testcase_35 AC 1,148 ms
23,868 KB
testcase_36 AC 1,199 ms
23,876 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 1 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/modint>
using mint = atcoder::modint998244353;
mint arith(mint a0, mint d, mint len) {
    return (a0 * 2 + (len - 1) * d) * len / 2;
}
void solve() {
    int64_t N, M;
    cin >> N >> M;
    vector<int64_t> thr;
    vector<mint> sum{0};
    for (int64_t i = 1; i < N;) {
        int64_t lo = i, hi = N;
        while (hi > lo + 1) {
            int64_t mi = (lo + hi) / 2;
            (M / mi == M / i ? lo : hi) = mi;
        }
        thr.push_back(i);
        sum.push_back(sum.back() + arith(M % i, -M / i, lo - i + 1));
        if (i == hi) break;
        i = hi;
    }
    const auto g = [&](int64_t r) -> mint {
        if (r <= 0) return 0;
        int64_t hi = r, lo = 0;
        while (hi > lo + 1) {
            int64_t mi = (hi + lo) / 2;
            (M / mi == M / r ? hi : lo) = mi;
        }
        int64_t k = distance(thr.begin(), lower_bound(thr.begin(), thr.end(), hi));
        mint ans = sum[k];
        ans += arith(M % hi, -M / hi, r - hi + 1);
        return ans;
    };
    mint ans = g(N);
    cout << ans.val() << '\n';
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0