結果

問題 No.2963 Mecha DESU
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-17 16:11:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 204,552 KB
実行使用メモリ 11,020 KB
最終ジャッジ日時 2024-11-17 16:13:10
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 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 2 ms
5,248 KB
testcase_13 AC 110 ms
11,008 KB
testcase_14 AC 136 ms
11,020 KB
testcase_15 AC 107 ms
11,008 KB
testcase_16 AC 110 ms
11,008 KB
testcase_17 AC 105 ms
11,008 KB
testcase_18 AC 106 ms
10,880 KB
testcase_19 AC 110 ms
11,008 KB
testcase_20 AC 67 ms
7,936 KB
testcase_21 AC 18 ms
5,248 KB
testcase_22 AC 10 ms
5,248 KB
testcase_23 AC 10 ms
5,248 KB
testcase_24 AC 67 ms
8,064 KB
testcase_25 AC 75 ms
8,320 KB
testcase_26 AC 95 ms
10,368 KB
testcase_27 AC 41 ms
6,784 KB
testcase_28 AC 92 ms
9,456 KB
testcase_29 AC 65 ms
7,808 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 28 ms
5,376 KB
testcase_32 AC 15 ms
5,248 KB
testcase_33 AC 70 ms
9,088 KB
testcase_34 AC 70 ms
8,704 KB
testcase_35 AC 22 ms
5,248 KB
testcase_36 AC 60 ms
9,452 KB
testcase_37 AC 14 ms
5,248 KB
testcase_38 AC 27 ms
5,376 KB
testcase_39 AC 66 ms
9,216 KB
testcase_40 AC 49 ms
6,820 KB
testcase_41 AC 86 ms
9,280 KB
testcase_42 AC 65 ms
7,680 KB
testcase_43 AC 102 ms
11,004 KB
testcase_44 AC 93 ms
10,964 KB
testcase_45 AC 89 ms
9,784 KB
testcase_46 AC 42 ms
6,400 KB
testcase_47 AC 60 ms
8,260 KB
testcase_48 AC 24 ms
5,248 KB
testcase_49 AC 60 ms
8,064 KB
testcase_50 AC 107 ms
10,880 KB
testcase_51 AC 107 ms
10,896 KB
testcase_52 AC 101 ms
11,008 KB
testcase_53 AC 88 ms
11,008 KB
testcase_54 AC 103 ms
11,008 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 41 ms
11,008 KB
testcase_58 AC 11 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}
#include <atcoder/modint>
using mint = atcoder::modint998244353;
int main() {
	fast_io();
	int n, m, k;
	cin >> n >> m >> k;
	vector<int> cnt(n + 1);
	for (int i = 0; i < m; i++) {
		int a;
		cin >> a;
		if (a <= n) {
			cnt[a]++;
		}
	}
	vector<int> cum(n + 1);
	for (int i = 1; i <= n; i++) {
		for (int j = i; j <= n; j += i) {
			cum[j] += cnt[i];
		}
	}
	mint inv_m = mint(m).inv();
	mint ans = 0;
	for (int i = 1; i <= n; i++) {
		mint p = (m - cum[i]) * inv_m;
		ans += 1 - p.pow(k);
	}
	cout << ans.val() << endl;
}
0