結果

問題 No.2963 Mecha DESU
ユーザー KumaTachiRenKumaTachiRen
提出日時 2024-11-16 15:54:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,421 bytes
コンパイル時間 5,468 ms
コンパイル使用メモリ 309,708 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-11-16 15:55:01
合計ジャッジ時間 14,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
12,416 KB
testcase_02 AC 2 ms
12,288 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 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 88 ms
7,168 KB
testcase_14 AC 84 ms
7,168 KB
testcase_15 AC 83 ms
7,144 KB
testcase_16 AC 84 ms
7,124 KB
testcase_17 AC 83 ms
7,148 KB
testcase_18 AC 96 ms
7,168 KB
testcase_19 AC 83 ms
7,180 KB
testcase_20 AC 60 ms
5,632 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 AC 9 ms
5,248 KB
testcase_23 AC 9 ms
5,248 KB
testcase_24 AC 51 ms
5,760 KB
testcase_25 AC 59 ms
6,016 KB
testcase_26 AC 71 ms
6,784 KB
testcase_27 AC 32 ms
5,248 KB
testcase_28 AC 74 ms
6,400 KB
testcase_29 AC 55 ms
5,504 KB
testcase_30 AC 6 ms
5,248 KB
testcase_31 AC 24 ms
5,248 KB
testcase_32 AC 13 ms
5,248 KB
testcase_33 AC 55 ms
6,144 KB
testcase_34 AC 55 ms
6,016 KB
testcase_35 AC 19 ms
5,248 KB
testcase_36 AC 42 ms
6,528 KB
testcase_37 AC 13 ms
5,248 KB
testcase_38 AC 23 ms
5,248 KB
testcase_39 AC 48 ms
6,400 KB
testcase_40 AC 42 ms
5,248 KB
testcase_41 AC 69 ms
6,400 KB
testcase_42 AC 56 ms
5,504 KB
testcase_43 AC 78 ms
7,088 KB
testcase_44 AC 70 ms
7,040 KB
testcase_45 AC 67 ms
6,528 KB
testcase_46 AC 34 ms
5,248 KB
testcase_47 AC 47 ms
5,760 KB
testcase_48 AC 21 ms
5,248 KB
testcase_49 AC 46 ms
5,632 KB
testcase_50 AC 101 ms
7,200 KB
testcase_51 AC 116 ms
7,168 KB
testcase_52 AC 100 ms
7,168 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 13 ms
7,084 KB
testcase_58 AC 11 ms
5,248 KB
testcase_59 AC 1 ms
10,496 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);
    rep(i, 0, m)
    {
        int a;
        cin >> a;
        for (int j = a; j <= n; j += a)
            c[j]++;
    }

    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