結果

問題 No.2891 Mint
ユーザー hourenhouren
提出日時 2024-09-13 22:49:48
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,097 ms / 2,000 ms
コード長 1,363 bytes
コンパイル時間 5,669 ms
コンパイル使用メモリ 273,280 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 22:50:20
合計ジャッジ時間 21,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1,097 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,948 KB
testcase_17 AC 803 ms
6,944 KB
testcase_18 AC 442 ms
6,940 KB
testcase_19 AC 390 ms
6,940 KB
testcase_20 AC 713 ms
6,944 KB
testcase_21 AC 388 ms
6,940 KB
testcase_22 AC 895 ms
6,940 KB
testcase_23 AC 290 ms
6,944 KB
testcase_24 AC 678 ms
6,940 KB
testcase_25 AC 984 ms
6,940 KB
testcase_26 AC 945 ms
6,944 KB
testcase_27 AC 863 ms
6,940 KB
testcase_28 AC 992 ms
6,944 KB
testcase_29 AC 411 ms
6,940 KB
testcase_30 AC 721 ms
6,940 KB
testcase_31 AC 462 ms
6,940 KB
testcase_32 AC 785 ms
6,940 KB
testcase_33 AC 558 ms
6,944 KB
testcase_34 AC 604 ms
6,944 KB
testcase_35 AC 688 ms
6,944 KB
testcase_36 AC 753 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; ++i)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n,m;
    cin >> n >> m;
    ll ans = (n % MOD) * (m % MOD);
    ll inv2 = (MOD+1)/2;
    for(ll i=1;i*i<=m&&i<=n;++i){
        ans = (ans + MOD - m/i*i % MOD) % MOD;
        if(i<m/i){
            ll r1 = 0, r2 = m+1;
            while(r1+1<r2){
                ll md = (r1 + r2) / 2;
                if(m/md>=i) r1 = md;
                else r2 = md;
            }
            ll l1 = 0, l2 = m+1;
            while(l1+1<l2){
                ll md = (l1 + l2) / 2;
                if(m/md>i) l1 = md;
                else l2 = md;
            }
            if(l2<=n){
                chmin(r1, n);
                ll x = ((l2+r1)%MOD) * ((r1-l2+1)%MOD) % MOD * inv2 % MOD * i % MOD;
                ans = (ans + MOD - x) % MOD;
            }
        }
    }
    cout << ans << '\n';
    return 0;
}
0