結果

問題 No.2952 Invision of Multiples
ユーザー とりゐとりゐ
提出日時 2024-09-13 15:52:46
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 435 ms / 4,000 ms
コード長 1,755 bytes
コンパイル時間 5,718 ms
コンパイル使用メモリ 166,400 KB
実行使用メモリ 84,816 KB
最終ジャッジ日時 2024-09-13 16:15:32
合計ジャッジ時間 14,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 84 ms
84,480 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 6 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 211 ms
51,188 KB
testcase_10 AC 231 ms
47,092 KB
testcase_11 AC 101 ms
82,064 KB
testcase_12 AC 99 ms
83,644 KB
testcase_13 AC 98 ms
47,072 KB
testcase_14 AC 140 ms
81,316 KB
testcase_15 AC 345 ms
84,668 KB
testcase_16 AC 325 ms
84,684 KB
testcase_17 AC 382 ms
84,816 KB
testcase_18 AC 383 ms
84,684 KB
testcase_19 AC 147 ms
84,644 KB
testcase_20 AC 144 ms
84,684 KB
testcase_21 AC 341 ms
84,676 KB
testcase_22 AC 334 ms
84,800 KB
testcase_23 AC 374 ms
84,688 KB
testcase_24 AC 289 ms
84,792 KB
testcase_25 AC 295 ms
84,800 KB
testcase_26 AC 308 ms
84,684 KB
testcase_27 AC 432 ms
84,680 KB
testcase_28 AC 408 ms
84,808 KB
testcase_29 AC 431 ms
84,812 KB
testcase_30 AC 435 ms
84,776 KB
testcase_31 AC 428 ms
84,684 KB
testcase_32 AC 432 ms
84,688 KB
testcase_33 AC 108 ms
84,688 KB
testcase_34 AC 107 ms
84,684 KB
testcase_35 AC 108 ms
84,684 KB
testcase_36 AC 171 ms
84,812 KB
testcase_37 AC 167 ms
84,680 KB
testcase_38 AC 167 ms
84,684 KB
testcase_39 AC 136 ms
84,684 KB
testcase_40 AC 136 ms
84,684 KB
testcase_41 AC 136 ms
84,808 KB
testcase_42 AC 136 ms
84,684 KB
testcase_43 AC 137 ms
84,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define repname(a, b, c, d, e, ...) e
#define rep(...) repname(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define rep0(x) for (int rep_counter = 0; rep_counter < (x); ++rep_counter)
#define rep1(i, x) for (int i = 0; i < (x); ++i)
#define rep2(i, l, r) for (int i = (l); i < (r); ++i)
#define rep3(i, l, r, c) for (int i = (l); i < (r); i += (c))

#include <atcoder/fenwicktree>
#include <atcoder/math>
#include <atcoder/modint>
using namespace atcoder;
using mint = modint998244353;

int B = 100;

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

  int N, M;
  cin >> N >> M;
  vector<int> D(N);
  rep(i, N) cin >> D[i];
  vector<mint> I(M + 1);
  rep(i, 1, M + 1) I[i] = mint(M / i).inv();
  vector<vector<ll>> cnt1(M + 1, vector<ll>(B + 1, 0)), cnt2(B + 1, vector<ll>(M + 1, 0));
  vector<ll> c(B + 1, 0);
  rep(i, N)
  {
    rep(j, 1, B + 1) cnt1[D[i]][j] += c[j];
    if (D[i] <= B)
      c[D[i]]++;
  }
  c.assign(M + 1, 0);
  fenwick_tree<mint> ft(M + 1);
  mint ans = 0;
  for (int i = N - 1; i >= 0; i--)
  {
    if (D[i] > B)
    {
      rep(j, 1, B + 1) cnt2[j][D[i]] += c[j];
      rep(j, D[i], M + 1, D[i]) ans += ft.sum(0, j) * I[D[i]];
      rep(j, D[i], M + 1, D[i]) ft.add(j, I[D[i]]);
    }
    else
      c[D[i]]++;
  }

  rep(i, 1, M + 1)
  {
    rep(j, 1, B + 1)
    {
      if (cnt1[i][j] != 0)
      {
        ans += cnt1[i][j] * (mint)floor_sum(M / j, i, j, j - 1) * I[i] * I[j];
      }
    }
  }
  rep(i, 1, B + 1)
  {
    rep(j, 1, M + 1)
    {
      if (cnt2[i][j] != 0)
      {
        ans += cnt2[i][j] * (mint)floor_sum(M / j, i, j, j - 1) * I[i] * I[j];
      }
    }
  }

  rep(i, N) ans *= M / D[i];
  cout << ans.val() << endl;
}
0