結果

問題 No.2963 Mecha DESU
ユーザー ntudantuda
提出日時 2024-11-30 12:49:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,826 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 253,180 KB
最終ジャッジ日時 2024-11-30 12:49:26
合計ジャッジ時間 16,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,436 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 40 ms
53,376 KB
testcase_07 AC 40 ms
53,632 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 39 ms
53,760 KB
testcase_11 AC 41 ms
53,248 KB
testcase_12 AC 42 ms
53,888 KB
testcase_13 AC 424 ms
181,416 KB
testcase_14 AC 424 ms
180,976 KB
testcase_15 AC 320 ms
171,036 KB
testcase_16 AC 475 ms
182,472 KB
testcase_17 AC 344 ms
171,772 KB
testcase_18 AC 539 ms
229,332 KB
testcase_19 AC 322 ms
162,880 KB
testcase_20 AC 181 ms
124,000 KB
testcase_21 AC 118 ms
106,112 KB
testcase_22 AC 71 ms
80,384 KB
testcase_23 AC 101 ms
99,584 KB
testcase_24 AC 169 ms
115,148 KB
testcase_25 AC 213 ms
125,272 KB
testcase_26 AC 177 ms
120,388 KB
testcase_27 AC 114 ms
92,064 KB
testcase_28 AC 304 ms
153,996 KB
testcase_29 AC 264 ms
152,916 KB
testcase_30 AC 55 ms
66,688 KB
testcase_31 AC 118 ms
98,944 KB
testcase_32 AC 61 ms
73,728 KB
testcase_33 AC 290 ms
160,928 KB
testcase_34 AC 363 ms
170,776 KB
testcase_35 AC 86 ms
87,936 KB
testcase_36 AC 171 ms
119,140 KB
testcase_37 AC 99 ms
102,400 KB
testcase_38 AC 92 ms
96,000 KB
testcase_39 AC 175 ms
119,224 KB
testcase_40 AC 101 ms
97,664 KB
testcase_41 AC 198 ms
123,924 KB
testcase_42 AC 182 ms
120,256 KB
testcase_43 AC 378 ms
193,236 KB
testcase_44 AC 234 ms
144,204 KB
testcase_45 AC 152 ms
113,276 KB
testcase_46 AC 191 ms
144,428 KB
testcase_47 AC 109 ms
91,904 KB
testcase_48 AC 90 ms
89,472 KB
testcase_49 AC 49 ms
63,488 KB
testcase_50 AC 1,826 ms
253,180 KB
testcase_51 AC 1,777 ms
252,704 KB
testcase_52 AC 1,689 ms
252,916 KB
testcase_53 AC 314 ms
213,616 KB
testcase_54 AC 289 ms
226,472 KB
testcase_55 AC 39 ms
53,888 KB
testcase_56 AC 38 ms
53,376 KB
testcase_57 AC 45 ms
53,376 KB
testcase_58 AC 94 ms
101,248 KB
testcase_59 AC 43 ms
53,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

MOD = 998244353
N, M, K = map(int, input().split())
A = list(map(int, input().split()))
dic0 = defaultdict(int)
for a in A:
    dic0[a] += 1

dic1 = defaultdict(int)
for k, v in dic0.items():
    for i in range(1, N // k + 1):
        dic1[i * k] += v

dic2 = defaultdict(int)
for v in dic1.values():
    dic2[v] += 1
ans = 0
all = pow(M, K, MOD)
for k, v in dic2.items():
    ans += v * (all - pow(M - k, K, MOD))
    ans %= MOD
ans *= pow(all, -1, MOD)
ans %= MOD
print(ans)
0