結果

問題 No.2963 Mecha DESU
ユーザー 沙耶花沙耶花
提出日時 2024-11-16 15:42:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 4,624 ms
コンパイル使用メモリ 260,868 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-16 15:42:45
合計ジャッジ時間 15,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
7,168 KB
testcase_01 AC 32 ms
7,168 KB
testcase_02 AC 32 ms
7,168 KB
testcase_03 AC 32 ms
7,168 KB
testcase_04 AC 32 ms
7,296 KB
testcase_05 AC 32 ms
7,168 KB
testcase_06 AC 31 ms
7,168 KB
testcase_07 AC 31 ms
7,168 KB
testcase_08 AC 32 ms
7,168 KB
testcase_09 AC 31 ms
7,168 KB
testcase_10 AC 32 ms
7,168 KB
testcase_11 AC 31 ms
7,168 KB
testcase_12 AC 31 ms
7,168 KB
testcase_13 AC 288 ms
7,168 KB
testcase_14 AC 288 ms
7,296 KB
testcase_15 AC 285 ms
7,040 KB
testcase_16 AC 287 ms
7,168 KB
testcase_17 AC 283 ms
7,168 KB
testcase_18 AC 285 ms
7,168 KB
testcase_19 AC 285 ms
7,168 KB
testcase_20 AC 191 ms
7,168 KB
testcase_21 AC 90 ms
7,168 KB
testcase_22 AC 60 ms
7,168 KB
testcase_23 AC 65 ms
7,168 KB
testcase_24 AC 185 ms
7,296 KB
testcase_25 AC 212 ms
7,168 KB
testcase_26 AC 247 ms
7,168 KB
testcase_27 AC 133 ms
7,168 KB
testcase_28 AC 247 ms
7,168 KB
testcase_29 AC 193 ms
7,168 KB
testcase_30 AC 45 ms
7,168 KB
testcase_31 AC 114 ms
7,168 KB
testcase_32 AC 67 ms
7,168 KB
testcase_33 AC 238 ms
7,168 KB
testcase_34 AC 212 ms
7,168 KB
testcase_35 AC 90 ms
7,168 KB
testcase_36 AC 197 ms
7,168 KB
testcase_37 AC 75 ms
7,168 KB
testcase_38 AC 97 ms
7,168 KB
testcase_39 AC 203 ms
7,168 KB
testcase_40 AC 143 ms
7,168 KB
testcase_41 AC 225 ms
7,168 KB
testcase_42 AC 189 ms
7,168 KB
testcase_43 AC 271 ms
7,168 KB
testcase_44 AC 259 ms
7,168 KB
testcase_45 AC 232 ms
7,168 KB
testcase_46 AC 136 ms
7,168 KB
testcase_47 AC 176 ms
7,296 KB
testcase_48 AC 93 ms
7,168 KB
testcase_49 AC 165 ms
7,168 KB
testcase_50 AC 275 ms
7,168 KB
testcase_51 AC 275 ms
7,296 KB
testcase_52 AC 272 ms
7,296 KB
testcase_53 AC 247 ms
7,168 KB
testcase_54 AC 290 ms
7,168 KB
testcase_55 AC 32 ms
7,168 KB
testcase_56 AC 32 ms
7,168 KB
testcase_57 AC 178 ms
7,168 KB
testcase_58 AC 69 ms
7,168 KB
testcase_59 AC 31 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int main(){
	int N,M,K;
	cin>>N>>M>>K;
	vector<int> cnt(1000001);
	rep(i,M){
		int t;
		cin>>t;
		cnt[t]++;
	}
	for(int i=cnt.size()-1;i>=1;i--){
		for(int j=i*2;j<cnt.size();j+=i){
			cnt[j]+=cnt[i];
		}
	}
	mint ans = 0;
	for(int i=1;i<=N;i++){
		mint p = M - cnt[i];
		p /= M;
		p = p.pow(K);
		ans += 1-p;
	}
	cout<<ans.val()<<endl;
	return 0;
}
0