結果

問題 No.2963 Mecha DESU
ユーザー KumaTachiRenKumaTachiRen
提出日時 2024-11-16 15:56:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 2,547 bytes
コンパイル時間 5,284 ms
コンパイル使用メモリ 308,376 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-16 15:56:37
合計ジャッジ時間 9,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
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 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 92 ms
11,136 KB
testcase_14 AC 96 ms
11,008 KB
testcase_15 AC 97 ms
11,008 KB
testcase_16 AC 97 ms
11,008 KB
testcase_17 AC 96 ms
11,136 KB
testcase_18 AC 97 ms
11,008 KB
testcase_19 AC 97 ms
11,008 KB
testcase_20 AC 61 ms
7,936 KB
testcase_21 AC 18 ms
5,248 KB
testcase_22 AC 9 ms
5,248 KB
testcase_23 AC 10 ms
5,248 KB
testcase_24 AC 57 ms
8,064 KB
testcase_25 AC 64 ms
8,320 KB
testcase_26 AC 80 ms
10,368 KB
testcase_27 AC 39 ms
6,656 KB
testcase_28 AC 85 ms
9,600 KB
testcase_29 AC 61 ms
7,808 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 27 ms
5,248 KB
testcase_32 AC 14 ms
5,248 KB
testcase_33 AC 61 ms
9,088 KB
testcase_34 AC 61 ms
8,704 KB
testcase_35 AC 22 ms
5,248 KB
testcase_36 AC 48 ms
9,472 KB
testcase_37 AC 14 ms
5,248 KB
testcase_38 AC 26 ms
5,376 KB
testcase_39 AC 55 ms
9,344 KB
testcase_40 AC 43 ms
6,912 KB
testcase_41 AC 77 ms
9,344 KB
testcase_42 AC 60 ms
7,808 KB
testcase_43 AC 85 ms
11,008 KB
testcase_44 AC 78 ms
11,008 KB
testcase_45 AC 74 ms
9,984 KB
testcase_46 AC 38 ms
6,400 KB
testcase_47 AC 52 ms
8,320 KB
testcase_48 AC 23 ms
5,248 KB
testcase_49 AC 52 ms
8,064 KB
testcase_50 AC 112 ms
11,008 KB
testcase_51 AC 114 ms
10,880 KB
testcase_52 AC 111 ms
11,008 KB
testcase_53 AC 74 ms
11,008 KB
testcase_54 AC 91 ms
11,008 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 17 ms
11,008 KB
testcase_58 AC 11 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/all>
using namespace atcoder;

using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
inline ostream &operator<<(ostream &os, const mint x)
{
    return os << x.val();
};
inline istream &operator>>(istream &is, mint &x)
{
    long long v;
    is >> v;
    x = v;
    return is;
};

struct Fast
{
    Fast()
    {
        std::cin.tie(nullptr);
        ios::sync_with_stdio(false);
        cout << setprecision(10);
    }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b) - 1; i >= (a); i--)
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return true;
    }
    return false;
}
template <class T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return true;
    }
    return false;
}

using ll = long long;
using vb = vector<bool>;
using vvb = vector<vb>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;

template <typename T1, typename T2>
ostream &operator<<(ostream &os, pair<T1, T2> &p)
{
    os << "(" << p.first << "," << p.second << ")";
    return os;
}

template <typename T>
ostream &operator<<(ostream &os, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
    {
        os << vec[i] << (i + 1 == (int)vec.size() ? "" : " ");
    }
    return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
        is >> vec[i];
    return is;
}

ll floor(ll a, ll b) { return a >= 0 ? a / b : (a + 1) / b - 1; }
ll ceil(ll a, ll b) { return a > 0 ? (a - 1) / b + 1 : a / b; }

void solve()
{
    int n, m, k;
    cin >> n >> m >> k;
    vi c(n + 1, 0), b(n + 1, 0);
    rep(i, 0, m)
    {
        int a;
        cin >> a;
        if (a <= n) b[a]++;
    }
    rep(i, 0, n + 1)
    {
        if (b[i])
        {
            for (int j = i; j <= n; j += i)
                c[j] += b[i];
        }
    }

    mint inv = mint(m).inv().pow(k);
    mint ans = 0;
    for (int i = 1; i <= n; i++)
        ans += 1 - mint(m - c[i]).pow(k) * inv;
    cout << ans << "\n";
}

int main()
{
    int t = 1;
    // cin >> t;
    while (t--)
        solve();
}
0