結果

問題 No.2891 Mint
ユーザー ooaiuooaiu
提出日時 2024-12-16 10:38:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,438 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 253,424 KB
実行使用メモリ 200,272 KB
最終ジャッジ日時 2024-12-16 10:39:04
合計ジャッジ時間 16,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
81,636 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 202 ms
103,268 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
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 171 ms
85,476 KB
testcase_38 AC 162 ms
80,228 KB
testcase_39 AC 190 ms
94,692 KB
testcase_40 AC 195 ms
97,376 KB
testcase_41 AC 100 ms
48,356 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 184 ms
92,008 KB
testcase_48 AC 182 ms
90,728 KB
testcase_49 AC 201 ms
101,992 KB
testcase_50 AC 69 ms
34,016 KB
testcase_51 AC 165 ms
81,252 KB
testcase_52 AC 52 ms
28,772 KB
testcase_53 AC 145 ms
70,500 KB
testcase_54 AC 155 ms
77,156 KB
testcase_55 AC 36 ms
19,684 KB
testcase_56 AC 205 ms
200,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

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

vector<array<int64_t, 3>> Quotients(int64_t P) {
    vector<array<int64_t, 3>> res;
    int64_t l = 1;
    while (l <= P) {
        int64_t p = P / l;
        int64_t r = P / p + 1;
        res.push_back({p, l, r});
        l = r;
    }
    return res;
}
#include <atcoder/modint>
using mint = atcoder::modint998244353;
int64_t arith(int64_t a0, int64_t d, int64_t len) { return (a0 * 2 + (len - 1) * d) * len / 2; }
void solve() {
    int64_t N, M;
    cin >> N >> M;
    vector<array<int64_t, 3>> qq = Quotients(M);
    vector<int64_t> thr;
    vector<int64_t> pref{0};
    for (const auto& [p, l, r] : qq) {
        thr.push_back(l);
        pref.push_back(pref.back() + arith(M % l, -p, r - l));
    }
    const auto g = [&](int r) -> int64_t {
        if(r <= 0) return 0;
        int hi = r, lo = 0;
        while (hi > lo + 1) {
            int mi = (hi + lo) / 2;
            (M / mi == M / r ? hi : lo) = mi;
        }
        int k = distance(thr.begin(), lower_bound(thr.begin(), thr.end(), hi));
        mint ans = pref[k];
        ans += arith(M % hi, -M / hi, r - hi + 1);
        return ans.val();
    };
    cout << g(N) << endl;
}

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