結果

問題 No.2963 Mecha DESU
ユーザー ねしんねしん
提出日時 2024-10-21 22:38:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 3,327 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 108,228 KB
最終ジャッジ日時 2024-10-26 11:01:21
合計ジャッジ時間 9,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,312 KB
testcase_01 AC 37 ms
54,364 KB
testcase_02 AC 40 ms
54,380 KB
testcase_03 AC 38 ms
55,252 KB
testcase_04 AC 38 ms
54,360 KB
testcase_05 AC 37 ms
54,416 KB
testcase_06 AC 37 ms
55,460 KB
testcase_07 AC 38 ms
54,484 KB
testcase_08 AC 42 ms
54,348 KB
testcase_09 AC 38 ms
54,480 KB
testcase_10 AC 38 ms
54,612 KB
testcase_11 AC 38 ms
54,724 KB
testcase_12 AC 37 ms
54,152 KB
testcase_13 AC 165 ms
107,724 KB
testcase_14 AC 163 ms
108,072 KB
testcase_15 AC 162 ms
108,200 KB
testcase_16 AC 160 ms
108,092 KB
testcase_17 AC 188 ms
108,228 KB
testcase_18 AC 163 ms
108,076 KB
testcase_19 AC 158 ms
107,844 KB
testcase_20 AC 130 ms
98,560 KB
testcase_21 AC 121 ms
94,040 KB
testcase_22 AC 67 ms
77,744 KB
testcase_23 AC 109 ms
95,176 KB
testcase_24 AC 110 ms
94,800 KB
testcase_25 AC 140 ms
101,088 KB
testcase_26 AC 127 ms
99,200 KB
testcase_27 AC 86 ms
85,968 KB
testcase_28 AC 163 ms
105,160 KB
testcase_29 AC 144 ms
99,640 KB
testcase_30 AC 55 ms
68,776 KB
testcase_31 AC 117 ms
93,236 KB
testcase_32 AC 65 ms
76,052 KB
testcase_33 AC 138 ms
100,668 KB
testcase_34 AC 143 ms
103,188 KB
testcase_35 AC 85 ms
83,664 KB
testcase_36 AC 107 ms
96,224 KB
testcase_37 AC 122 ms
100,032 KB
testcase_38 AC 74 ms
79,904 KB
testcase_39 AC 118 ms
97,612 KB
testcase_40 AC 85 ms
86,272 KB
testcase_41 AC 125 ms
98,356 KB
testcase_42 AC 134 ms
98,604 KB
testcase_43 AC 161 ms
106,128 KB
testcase_44 AC 131 ms
103,124 KB
testcase_45 AC 112 ms
96,072 KB
testcase_46 AC 103 ms
91,192 KB
testcase_47 AC 84 ms
88,064 KB
testcase_48 AC 92 ms
87,760 KB
testcase_49 AC 69 ms
82,904 KB
testcase_50 AC 206 ms
107,952 KB
testcase_51 AC 211 ms
107,944 KB
testcase_52 AC 212 ms
107,920 KB
testcase_53 AC 151 ms
107,820 KB
testcase_54 AC 160 ms
107,832 KB
testcase_55 AC 39 ms
54,768 KB
testcase_56 AC 38 ms
53,808 KB
testcase_57 AC 77 ms
91,344 KB
testcase_58 AC 79 ms
98,992 KB
testcase_59 AC 38 ms
54,356 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