結果

問題 No.2963 Mecha DESU
ユーザー ねしんねしん
提出日時 2024-10-23 08:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 108,100 KB
最終ジャッジ日時 2024-10-26 11:01:19
合計ジャッジ時間 8,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,244 KB
testcase_01 AC 40 ms
54,292 KB
testcase_02 AC 39 ms
54,996 KB
testcase_03 AC 39 ms
55,260 KB
testcase_04 AC 39 ms
53,872 KB
testcase_05 AC 39 ms
53,660 KB
testcase_06 AC 40 ms
54,176 KB
testcase_07 AC 42 ms
55,628 KB
testcase_08 AC 41 ms
54,780 KB
testcase_09 AC 39 ms
53,796 KB
testcase_10 AC 39 ms
54,500 KB
testcase_11 AC 40 ms
53,952 KB
testcase_12 AC 39 ms
54,024 KB
testcase_13 AC 169 ms
107,824 KB
testcase_14 AC 165 ms
107,980 KB
testcase_15 AC 165 ms
107,948 KB
testcase_16 AC 163 ms
107,832 KB
testcase_17 AC 167 ms
107,824 KB
testcase_18 AC 166 ms
108,076 KB
testcase_19 AC 167 ms
107,972 KB
testcase_20 AC 131 ms
98,704 KB
testcase_21 AC 125 ms
93,884 KB
testcase_22 AC 71 ms
77,268 KB
testcase_23 AC 114 ms
96,068 KB
testcase_24 AC 117 ms
94,756 KB
testcase_25 AC 143 ms
101,112 KB
testcase_26 AC 122 ms
99,044 KB
testcase_27 AC 87 ms
86,192 KB
testcase_28 AC 168 ms
105,276 KB
testcase_29 AC 149 ms
99,888 KB
testcase_30 AC 58 ms
70,080 KB
testcase_31 AC 120 ms
93,248 KB
testcase_32 AC 71 ms
75,616 KB
testcase_33 AC 140 ms
100,668 KB
testcase_34 AC 145 ms
103,192 KB
testcase_35 AC 83 ms
83,648 KB
testcase_36 AC 112 ms
96,384 KB
testcase_37 AC 120 ms
100,120 KB
testcase_38 AC 78 ms
80,024 KB
testcase_39 AC 118 ms
97,596 KB
testcase_40 AC 87 ms
86,328 KB
testcase_41 AC 133 ms
98,712 KB
testcase_42 AC 140 ms
98,212 KB
testcase_43 AC 158 ms
106,028 KB
testcase_44 AC 136 ms
103,124 KB
testcase_45 AC 116 ms
95,768 KB
testcase_46 AC 108 ms
91,212 KB
testcase_47 AC 88 ms
87,764 KB
testcase_48 AC 91 ms
87,852 KB
testcase_49 AC 71 ms
83,084 KB
testcase_50 AC 201 ms
107,848 KB
testcase_51 AC 212 ms
108,100 KB
testcase_52 AC 205 ms
107,852 KB
testcase_53 AC 150 ms
107,956 KB
testcase_54 AC 160 ms
107,812 KB
testcase_55 AC 39 ms
53,800 KB
testcase_56 AC 38 ms
54,520 KB
testcase_57 AC 80 ms
91,240 KB
testcase_58 AC 84 ms
98,848 KB
testcase_59 AC 39 ms
54,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
MOD=998244353
N,M,K=list(map(int,input().split()))
A=list(map(int,input().split()))
card=[0]*(N+1)
for i in A:
	if i<=N:
	  card[i]+=1
cnt=[0]*(N+1)
for i in range(1,N+1):
	if card[i]==0:
		continue
	for j in range(i,N+1,i):
		cnt[j]+=card[i]
ans=defaultdict(int)
for i in range(1,N+1):
	ans[M-cnt[i]]+=1
ANS=(N*pow(M,K,MOD))%MOD
for i in range(1,M+1):
	ANS=(ANS-ans[i]*pow(i,K,MOD))%MOD
	#print(ANS)
#print(ans)
ANS=(ANS*pow(pow(M,K,MOD),MOD-2,MOD))%MOD
print(ANS)
0