結果

問題 No.2963 Mecha DESU
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-16 19:24:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 861 bytes
コンパイル時間 5,057 ms
コンパイル使用メモリ 307,872 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-16 19:24:32
合計ジャッジ時間 19,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 1 ms
12,800 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 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 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 252 ms
7,552 KB
testcase_14 AC 234 ms
7,680 KB
testcase_15 AC 246 ms
7,552 KB
testcase_16 AC 246 ms
7,552 KB
testcase_17 AC 249 ms
7,552 KB
testcase_18 AC 251 ms
7,680 KB
testcase_19 AC 251 ms
7,552 KB
testcase_20 AC 156 ms
6,144 KB
testcase_21 AC 50 ms
5,248 KB
testcase_22 AC 29 ms
5,248 KB
testcase_23 AC 28 ms
5,248 KB
testcase_24 AC 144 ms
6,016 KB
testcase_25 AC 166 ms
6,144 KB
testcase_26 AC 211 ms
7,040 KB
testcase_27 AC 99 ms
5,248 KB
testcase_28 AC 205 ms
6,784 KB
testcase_29 AC 150 ms
5,888 KB
testcase_30 AC 15 ms
5,248 KB
testcase_31 AC 74 ms
5,248 KB
testcase_32 AC 35 ms
5,248 KB
testcase_33 AC 173 ms
6,528 KB
testcase_34 AC 169 ms
6,528 KB
testcase_35 AC 56 ms
5,248 KB
testcase_36 AC 160 ms
6,656 KB
testcase_37 AC 41 ms
5,248 KB
testcase_38 AC 64 ms
5,248 KB
testcase_39 AC 159 ms
6,528 KB
testcase_40 AC 105 ms
5,248 KB
testcase_41 AC 196 ms
6,528 KB
testcase_42 AC 150 ms
6,016 KB
testcase_43 AC 234 ms
7,552 KB
testcase_44 AC 222 ms
7,296 KB
testcase_45 AC 195 ms
6,656 KB
testcase_46 AC 103 ms
5,248 KB
testcase_47 AC 141 ms
6,016 KB
testcase_48 AC 58 ms
5,248 KB
testcase_49 AC 139 ms
5,632 KB
testcase_50 AC 275 ms
7,552 KB
testcase_51 AC 267 ms
7,680 KB
testcase_52 AC 265 ms
7,680 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 153 ms
7,296 KB
testcase_58 AC 30 ms
5,248 KB
testcase_59 AC 2 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define For(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;
using mint = atcoder::modint998244353;

int INF = 2000000000;
lint LINF = 1000000000000000000;

int main() {
    int n, m, k;
    cin >> n >> m >> k;
    vector<int> a(m);
    rep(i, m) {
        cin >> a[i];
    }
    vector<int> cnt(n + 1, 0);
    for (int &x : a) {
        for (int y = x; y <= n; y += x) {
            cnt[y]++;
        }
    }
    mint ans = mint(0);
    For(i, 1, n + 1) {
        mint p = mint(mint(m - cnt[i]) / mint(m)).pow(k);
        p = mint(1) - p;
        ans += p;
    }
    cout << ans.val() << endl;
}
0