結果

問題 No.2963 Mecha DESU
ユーザー ldsybldsyb
提出日時 2024-11-16 16:17:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 664 bytes
コンパイル時間 5,380 ms
コンパイル使用メモリ 309,424 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-11-16 16:19:03
合計ジャッジ時間 20,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
16,384 KB
testcase_01 AC 6 ms
22,912 KB
testcase_02 AC 11 ms
16,384 KB
testcase_03 AC 7 ms
11,136 KB
testcase_04 AC 6 ms
11,000 KB
testcase_05 AC 6 ms
11,024 KB
testcase_06 AC 6 ms
11,008 KB
testcase_07 AC 7 ms
11,084 KB
testcase_08 AC 5 ms
11,008 KB
testcase_09 AC 8 ms
11,136 KB
testcase_10 AC 7 ms
11,008 KB
testcase_11 AC 6 ms
10,964 KB
testcase_12 AC 8 ms
11,092 KB
testcase_13 AC 261 ms
11,864 KB
testcase_14 AC 260 ms
11,804 KB
testcase_15 AC 263 ms
11,808 KB
testcase_16 AC 286 ms
11,808 KB
testcase_17 AC 256 ms
11,828 KB
testcase_18 AC 254 ms
11,872 KB
testcase_19 AC 259 ms
11,792 KB
testcase_20 AC 166 ms
11,616 KB
testcase_21 AC 61 ms
11,836 KB
testcase_22 AC 35 ms
11,288 KB
testcase_23 AC 38 ms
11,648 KB
testcase_24 AC 165 ms
11,448 KB
testcase_25 AC 185 ms
11,704 KB
testcase_26 AC 238 ms
11,392 KB
testcase_27 AC 109 ms
11,220 KB
testcase_28 AC 226 ms
11,832 KB
testcase_29 AC 166 ms
11,776 KB
testcase_30 AC 19 ms
11,084 KB
testcase_31 AC 90 ms
11,640 KB
testcase_32 AC 42 ms
11,288 KB
testcase_33 AC 187 ms
11,704 KB
testcase_34 AC 185 ms
11,824 KB
testcase_35 AC 65 ms
11,208 KB
testcase_36 AC 177 ms
11,392 KB
testcase_37 AC 50 ms
11,660 KB
testcase_38 AC 73 ms
11,212 KB
testcase_39 AC 183 ms
11,392 KB
testcase_40 AC 117 ms
11,136 KB
testcase_41 AC 201 ms
11,644 KB
testcase_42 AC 168 ms
11,776 KB
testcase_43 AC 248 ms
11,704 KB
testcase_44 AC 237 ms
11,520 KB
testcase_45 AC 207 ms
11,392 KB
testcase_46 AC 112 ms
11,388 KB
testcase_47 AC 152 ms
11,136 KB
testcase_48 AC 67 ms
11,392 KB
testcase_49 AC 140 ms
11,112 KB
testcase_50 AC 295 ms
11,752 KB
testcase_51 AC 295 ms
11,800 KB
testcase_52 AC 289 ms
11,904 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 6 ms
11,068 KB
testcase_56 AC 7 ms
11,008 KB
testcase_57 AC 148 ms
11,100 KB
testcase_58 AC 42 ms
11,812 KB
testcase_59 AC 5 ms
11,064 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> cnt(1000001);
    for (auto &&a : as)
    {
        for (int64_t i = a; i <= 1000000; i += a)
        {
            cnt[i]++;
        }
    }

    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