結果

問題 No.2891 Mint
ユーザー au7777au7777
提出日時 2024-09-16 11:19:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 3,763 bytes
コンパイル時間 4,606 ms
コンパイル使用メモリ 246,868 KB
実行使用メモリ 19,920 KB
最終ジャッジ日時 2024-09-16 11:19:46
合計ジャッジ時間 12,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 416 ms
19,916 KB
testcase_07 AC 1 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 1 ms
5,376 KB
testcase_17 AC 310 ms
19,792 KB
testcase_18 AC 174 ms
11,596 KB
testcase_19 AC 161 ms
11,724 KB
testcase_20 AC 297 ms
19,916 KB
testcase_21 AC 151 ms
11,724 KB
testcase_22 AC 327 ms
19,784 KB
testcase_23 AC 117 ms
11,580 KB
testcase_24 AC 268 ms
19,788 KB
testcase_25 AC 401 ms
19,788 KB
testcase_26 AC 351 ms
19,788 KB
testcase_27 AC 325 ms
19,788 KB
testcase_28 AC 369 ms
19,856 KB
testcase_29 AC 180 ms
11,592 KB
testcase_30 AC 272 ms
19,772 KB
testcase_31 AC 166 ms
11,600 KB
testcase_32 AC 298 ms
19,796 KB
testcase_33 AC 220 ms
19,916 KB
testcase_34 AC 250 ms
19,916 KB
testcase_35 AC 273 ms
19,920 KB
testcase_36 AC 290 ms
19,784 KB
testcase_37 AC 11 ms
5,376 KB
testcase_38 AC 10 ms
5,376 KB
testcase_39 AC 12 ms
5,376 KB
testcase_40 AC 12 ms
5,376 KB
testcase_41 AC 8 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 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 11 ms
5,376 KB
testcase_48 AC 11 ms
5,376 KB
testcase_49 AC 12 ms
5,376 KB
testcase_50 AC 5 ms
5,376 KB
testcase_51 AC 10 ms
5,376 KB
testcase_52 AC 4 ms
5,376 KB
testcase_53 AC 9 ms
5,376 KB
testcase_54 AC 10 ms
5,376 KB
testcase_55 AC 3 ms
5,376 KB
testcase_56 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
typedef long long int ll;
using namespace std;
typedef pair<ll, ll> P;
using namespace atcoder;
template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
#define USE998244353
#ifdef USE998244353
const ll MOD = 998244353;
using mint = modint998244353;
#else
const ll MOD = 1000000007;
using mint = modint1000000007;
#endif

#pragma region //使いがち
const int MAX = 2000001;
long long fac[MAX], finv[MAX], inv[MAX];
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}
ll pow_ll(ll x, ll n) {
    if (n == 0) return 1;
    if (n % 2) {
        return pow_ll(x, n - 1) * x;
    }
    else {
        ll tmp = pow_ll(x, n / 2);
        return tmp * tmp;
    }
}
// floor(a^(1/k))
ll floor_root(ll a, ll k) {
    assert(a >= 0);
    assert(k >= 1);
    if (a == 0) return 0;
    if (k == 1) return a;
    // 大体の値
    ll x = (ll)pow(a, 1.0 / k);
    // 増やす
    while ((pow_ll(x + 1, k)) <= a) {
        x++;
    }
    // 減らす
    while ((pow_ll(x, k)) > a) {
        x--;
    }
    return x;
}
ll keta(ll num, ll arity) {
    ll ret = 0;
    while (num) {
        num /= arity;
        ret++;
    }
    return ret;
}
// k進数で見た時のi桁目の数を返す (一番下は0桁目)
ll keta_num(ll num, ll i, ll k) {
    return (num / pow_ll(k, i)) % k;
}
ll ceil(ll n, ll m) {
    // n > 0, m > 0
    ll ret = n / m;
    if (n % m) ret++;
    return ret;
}
void compress(vector<ll>& v) {
    // [3 5 5 6 1 1 10 1] -> [1 2 2 3 0 0 4 0] 
    vector<ll> u = v;
    sort(u.begin(), u.end());
    u.erase(unique(u.begin(),u.end()),u.end());
    map<ll, ll> mp;
    for (int i = 0; i < u.size(); i++) {
        mp[u[i]] = i;
    }
    for (int i = 0; i < v.size(); i++) {
        v[i] = mp[v[i]];
    }
}
vector<pair<ll, ll> > prime_factorize(ll N) {
    vector<pair<ll, ll> > res;
    for (ll a = 2; a * a <= N; ++a) {
        if (N % a != 0) continue;
        ll ex = 0; // 指数

        // 割れる限り割り続ける
        while (N % a == 0) {
            ++ex;
            N /= a;
        }

        // その結果を push
        res.push_back({a, ex});
    }

    // 最後に残った数について
    if (N != 1) res.push_back({N, 1});
    return res;
}
#pragma endregion

// 1以上n以下について素数かどうかのリストを返す
vector<bool> is_prime_list(int n) {
    vector<bool> is_prime(n + 1, true);
    is_prime[0] = false;
    is_prime[1] = false;
    for (int i = 2; i * i <= n; i++) {
        if (!is_prime[i]) continue;
        for (int j = i * 2; j <= n; j += i) {
            is_prime[j] = false;
        }
    }
    return is_prime;
}

int main() {
    ll n, m;
    cin >> n >> m;
    vector<ll> change_point;
    for (ll i = 1; i * i <= m; i++) {
        if (i <= n) {
            change_point.push_back(i);
        }
        if (i * i == m) continue;
        if (m / i <= n) {
            change_point.push_back(m / i);
        }
    }
    change_point.push_back(n);
    change_point.push_back(0);
    sort(change_point.begin(), change_point.end(), greater<ll>());
    mint ans = (mint)m * n;
    for (ll i = 0; i < change_point.size() - 1; i++) {
        mint a = m / change_point[i];
        mint f = change_point[i + 1] + 1;
        mint g = change_point[i];
        ans -= a * (f + g) * (g - f + 1) / 2;
    }
    cout << ans.val() << endl;
    return 0;
}
0