結果

問題 No.2963 Mecha DESU
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-16 19:27:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 5,031 ms
コンパイル使用メモリ 308,028 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-11-16 19:27:54
合計ジャッジ時間 14,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,088 KB
testcase_01 AC 4 ms
7,180 KB
testcase_02 AC 5 ms
7,084 KB
testcase_03 AC 5 ms
7,200 KB
testcase_04 AC 5 ms
7,284 KB
testcase_05 AC 4 ms
7,084 KB
testcase_06 AC 5 ms
7,100 KB
testcase_07 AC 5 ms
7,184 KB
testcase_08 AC 5 ms
7,112 KB
testcase_09 AC 4 ms
7,168 KB
testcase_10 AC 5 ms
7,060 KB
testcase_11 AC 5 ms
7,264 KB
testcase_12 AC 5 ms
7,168 KB
testcase_13 AC 269 ms
11,368 KB
testcase_14 AC 244 ms
11,460 KB
testcase_15 AC 250 ms
11,520 KB
testcase_16 AC 251 ms
11,520 KB
testcase_17 AC 237 ms
11,464 KB
testcase_18 AC 268 ms
11,504 KB
testcase_19 AC 245 ms
11,520 KB
testcase_20 AC 153 ms
9,984 KB
testcase_21 AC 57 ms
7,932 KB
testcase_22 AC 33 ms
7,584 KB
testcase_23 AC 35 ms
7,636 KB
testcase_24 AC 153 ms
9,940 KB
testcase_25 AC 171 ms
10,156 KB
testcase_26 AC 228 ms
10,896 KB
testcase_27 AC 104 ms
8,868 KB
testcase_28 AC 213 ms
10,712 KB
testcase_29 AC 173 ms
9,804 KB
testcase_30 AC 18 ms
7,392 KB
testcase_31 AC 86 ms
8,432 KB
testcase_32 AC 40 ms
7,680 KB
testcase_33 AC 177 ms
10,356 KB
testcase_34 AC 176 ms
10,232 KB
testcase_35 AC 65 ms
8,172 KB
testcase_36 AC 173 ms
10,408 KB
testcase_37 AC 47 ms
7,680 KB
testcase_38 AC 68 ms
8,212 KB
testcase_39 AC 171 ms
10,380 KB
testcase_40 AC 110 ms
9,216 KB
testcase_41 AC 189 ms
10,368 KB
testcase_42 AC 150 ms
9,856 KB
testcase_43 AC 252 ms
11,424 KB
testcase_44 AC 222 ms
11,264 KB
testcase_45 AC 202 ms
10,624 KB
testcase_46 AC 108 ms
8,960 KB
testcase_47 AC 141 ms
9,680 KB
testcase_48 AC 64 ms
8,088 KB
testcase_49 AC 131 ms
9,472 KB
testcase_50 AC 276 ms
11,392 KB
testcase_51 AC 263 ms
11,392 KB
testcase_52 AC 255 ms
11,412 KB
testcase_53 AC 206 ms
11,392 KB
testcase_54 AC 228 ms
11,392 KB
testcase_55 AC 4 ms
7,196 KB
testcase_56 AC 4 ms
7,160 KB
testcase_57 AC 154 ms
11,000 KB
testcase_58 AC 40 ms
7,680 KB
testcase_59 AC 5 ms
7,060 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), cnt(1000010);
    rep(i, m) {
        cin >> a[i];
        cnt[a[i]]++;
    }
    vector<int> d(n + 1, 0);
    rep(i, 1000010) {
        if (cnt[i] > 0) {
            for (int j = i; j <= n; j += i) {
                d[j] += cnt[i];
            }
        }
    }
    mint ans = mint(0);
    For(i, 1, n + 1) {
        mint p = mint(mint(m - d[i]) / mint(m)).pow(k);
        p = mint(1) - p;
        ans += p;
    }
    cout << ans.val() << endl;
}
0