結果

問題 No.2963 Mecha DESU
ユーザー maeshunmaeshun
提出日時 2024-11-17 16:11:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 983 bytes
コンパイル時間 4,849 ms
コンパイル使用メモリ 262,284 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-11-17 16:13:06
合計ジャッジ時間 78,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,168 KB
testcase_01 AC 5 ms
7,168 KB
testcase_02 AC 4 ms
7,168 KB
testcase_03 AC 5 ms
7,424 KB
testcase_04 AC 5 ms
7,168 KB
testcase_05 AC 5 ms
7,296 KB
testcase_06 AC 5 ms
7,296 KB
testcase_07 AC 5 ms
7,296 KB
testcase_08 AC 5 ms
7,296 KB
testcase_09 AC 4 ms
7,296 KB
testcase_10 AC 5 ms
7,168 KB
testcase_11 AC 5 ms
7,296 KB
testcase_12 AC 5 ms
7,296 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,387 ms
7,424 KB
testcase_21 AC 137 ms
7,680 KB
testcase_22 AC 113 ms
7,296 KB
testcase_23 AC 37 ms
7,424 KB
testcase_24 AC 1,425 ms
7,296 KB
testcase_25 AC 1,521 ms
7,424 KB
testcase_26 TLE -
testcase_27 AC 791 ms
7,296 KB
testcase_28 TLE -
testcase_29 AC 1,241 ms
7,552 KB
testcase_30 AC 45 ms
7,168 KB
testcase_31 AC 399 ms
7,424 KB
testcase_32 AC 165 ms
7,168 KB
testcase_33 AC 1,708 ms
7,552 KB
testcase_34 AC 1,587 ms
7,680 KB
testcase_35 AC 317 ms
7,296 KB
testcase_36 AC 1,876 ms
7,296 KB
testcase_37 AC 74 ms
7,424 KB
testcase_38 AC 397 ms
7,296 KB
testcase_39 AC 1,828 ms
7,296 KB
testcase_40 AC 914 ms
7,296 KB
testcase_41 AC 1,809 ms
7,680 KB
testcase_42 AC 1,190 ms
7,424 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 718 ms
7,296 KB
testcase_47 AC 1,399 ms
7,296 KB
testcase_48 AC 273 ms
7,424 KB
testcase_49 AC 1,262 ms
7,296 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 5 ms
7,296 KB
testcase_56 AC 5 ms
7,296 KB
testcase_57 TLE -
testcase_58 AC 32 ms
7,552 KB
testcase_59 AC 4 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n, m, k;
    cin >> n >> m >> k;
    vector<int> a(m);
    rep(i,m) cin >> a[i];
    vector<int> ds(1e6+1);
    rep(i,m) ds[a[i]]++;
    mint ans = 0;
    mint inv = mint(m).pow(k).inv();
    for(int i=1;i<=n;i++) {
        int cnt = 0;
        for(int j=1;j*j<=i;j++) {
            if(i%j==0) {
                cnt += ds[j];
                if(j!=i/j) cnt += ds[i/j];
            }
        }
        ans += 1 - mint(m-cnt).pow(k)*inv;
    }
    cout << ans.val() << endl;
    return 0;
}
0