結果

問題 No.2891 Mint
ユーザー kusaf_kusaf_
提出日時 2024-11-02 02:54:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 251,820 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-02 02:54:46
合計ジャッジ時間 8,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 135 ms
52,752 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 119 ms
52,732 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 93 ms
52,932 KB
testcase_18 AC 55 ms
28,524 KB
testcase_19 AC 49 ms
28,024 KB
testcase_20 AC 90 ms
53,768 KB
testcase_21 AC 53 ms
28,512 KB
testcase_22 AC 104 ms
52,672 KB
testcase_23 AC 44 ms
28,940 KB
testcase_24 AC 85 ms
52,964 KB
testcase_25 AC 112 ms
53,296 KB
testcase_26 AC 132 ms
52,868 KB
testcase_27 AC 101 ms
53,172 KB
testcase_28 AC 115 ms
52,672 KB
testcase_29 AC 54 ms
28,312 KB
testcase_30 AC 90 ms
52,904 KB
testcase_31 AC 57 ms
29,692 KB
testcase_32 AC 95 ms
52,928 KB
testcase_33 AC 76 ms
53,996 KB
testcase_34 AC 81 ms
52,936 KB
testcase_35 AC 86 ms
53,000 KB
testcase_36 AC 93 ms
53,236 KB
testcase_37 AC 82 ms
54,108 KB
testcase_38 AC 78 ms
53,088 KB
testcase_39 AC 90 ms
53,592 KB
testcase_40 AC 99 ms
52,860 KB
testcase_41 AC 54 ms
28,724 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 2 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 90 ms
54,344 KB
testcase_48 AC 86 ms
53,004 KB
testcase_49 AC 98 ms
53,324 KB
testcase_50 AC 36 ms
28,964 KB
testcase_51 AC 79 ms
53,912 KB
testcase_52 AC 28 ms
15,800 KB
testcase_53 AC 68 ms
53,332 KB
testcase_54 AC 76 ms
53,196 KB
testcase_55 AC 20 ms
16,272 KB
testcase_56 AC 99 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using namespace std;
using ll = long long;
using mint = modint998244353;

vector<tuple<ll, ll, ll>> EnumFloor(ll n) {
  vector<tuple<ll, ll, ll>> ret;
  ll l = 1;
  while(l <= n) {
    ll q = n / l, r = n / q;
    ret.push_back({l, r, q});
    l = r + 1;
  }
  return ret;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, M;
  cin >> N >> M;

  const mint inv = mint(2).inv();

  mint ans = mint(N) * M;

  for(auto &[l, r, q] : EnumFloor(M)) {
    bool fin = false;
    if(N <= r) {
      r = N;
      fin = true;
    }
    ans -= mint(l + r) * (r - l + 1) * inv * q;
    if(fin) { break; }
  }

  cout << ans.val() << "\n";
}
0