結果

問題 No.2963 Mecha DESU
ユーザー ldsybldsyb
提出日時 2024-11-16 16:23:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 5,199 ms
コンパイル使用メモリ 309,376 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-11-16 16:23:53
合計ジャッジ時間 14,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,008 KB
testcase_01 AC 10 ms
11,008 KB
testcase_02 AC 10 ms
10,972 KB
testcase_03 AC 11 ms
11,136 KB
testcase_04 AC 10 ms
11,136 KB
testcase_05 AC 10 ms
11,136 KB
testcase_06 AC 11 ms
10,968 KB
testcase_07 AC 11 ms
11,072 KB
testcase_08 AC 10 ms
10,968 KB
testcase_09 AC 10 ms
11,008 KB
testcase_10 AC 10 ms
11,136 KB
testcase_11 AC 10 ms
11,136 KB
testcase_12 AC 10 ms
11,100 KB
testcase_13 AC 270 ms
11,904 KB
testcase_14 AC 245 ms
11,768 KB
testcase_15 AC 248 ms
11,904 KB
testcase_16 AC 268 ms
11,776 KB
testcase_17 AC 258 ms
11,776 KB
testcase_18 AC 253 ms
11,904 KB
testcase_19 AC 255 ms
11,892 KB
testcase_20 AC 163 ms
11,704 KB
testcase_21 AC 68 ms
11,820 KB
testcase_22 AC 39 ms
11,392 KB
testcase_23 AC 41 ms
11,648 KB
testcase_24 AC 156 ms
11,404 KB
testcase_25 AC 174 ms
11,788 KB
testcase_26 AC 214 ms
11,392 KB
testcase_27 AC 106 ms
11,284 KB
testcase_28 AC 218 ms
11,880 KB
testcase_29 AC 191 ms
11,708 KB
testcase_30 AC 23 ms
11,252 KB
testcase_31 AC 85 ms
11,760 KB
testcase_32 AC 47 ms
11,244 KB
testcase_33 AC 185 ms
11,648 KB
testcase_34 AC 186 ms
11,836 KB
testcase_35 AC 67 ms
11,244 KB
testcase_36 AC 167 ms
11,392 KB
testcase_37 AC 52 ms
11,648 KB
testcase_38 AC 76 ms
11,100 KB
testcase_39 AC 183 ms
11,520 KB
testcase_40 AC 115 ms
11,264 KB
testcase_41 AC 191 ms
11,520 KB
testcase_42 AC 157 ms
11,648 KB
testcase_43 AC 229 ms
11,760 KB
testcase_44 AC 218 ms
11,648 KB
testcase_45 AC 194 ms
11,520 KB
testcase_46 AC 115 ms
11,520 KB
testcase_47 AC 149 ms
11,136 KB
testcase_48 AC 71 ms
11,492 KB
testcase_49 AC 139 ms
11,136 KB
testcase_50 AC 271 ms
11,776 KB
testcase_51 AC 273 ms
11,904 KB
testcase_52 AC 290 ms
11,904 KB
testcase_53 AC 217 ms
11,904 KB
testcase_54 AC 234 ms
11,904 KB
testcase_55 AC 10 ms
11,120 KB
testcase_56 AC 10 ms
11,136 KB
testcase_57 AC 151 ms
11,080 KB
testcase_58 AC 44 ms
11,904 KB
testcase_59 AC 11 ms
10,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

int main()
{
    int64_t n, m, k;
    cin >> n >> m >> k;
    vector<int64_t> as(m);
    for (auto &&a : as)
    {
        cin >> a;
    }

    vector<int64_t> bs(10);

    vector<int64_t> cnt(1000001);
    for (auto &&a : as)
    {
        if (a < 10)
        {
            bs[a]++;
            continue;
        }

        for (int64_t i = a; i <= 1000000; i += a)
        {
            cnt[i]++;
        }
    }
    for (int64_t a = 1; a < 10; a++)
    {
        for (int64_t i = a; i <= 1000000; i += a)
        {
            cnt[i] += bs[a];
        }
    }

    using mint = modint998244353;

    mint ans = 0;

    for (int64_t i = 1; i <= n; i++)
    {
        ans += 1 - (mint(m - cnt[i]) / m).pow(k);
    }

    cout << ans.val() << endl;

    return 0;
}
0