結果

問題 No.2963 Mecha DESU
ユーザー 遭難者遭難者
提出日時 2024-10-26 00:58:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,976 KB
最終ジャッジ日時 2024-10-26 11:01:35
合計ジャッジ時間 9,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,512 KB
testcase_01 AC 37 ms
52,956 KB
testcase_02 AC 38 ms
52,908 KB
testcase_03 AC 37 ms
52,704 KB
testcase_04 AC 37 ms
52,832 KB
testcase_05 AC 37 ms
52,160 KB
testcase_06 AC 36 ms
53,216 KB
testcase_07 AC 36 ms
52,768 KB
testcase_08 AC 36 ms
53,484 KB
testcase_09 AC 36 ms
53,008 KB
testcase_10 AC 37 ms
53,848 KB
testcase_11 AC 36 ms
52,836 KB
testcase_12 AC 37 ms
52,460 KB
testcase_13 AC 211 ms
104,968 KB
testcase_14 AC 210 ms
104,544 KB
testcase_15 AC 230 ms
104,556 KB
testcase_16 AC 212 ms
104,728 KB
testcase_17 AC 206 ms
104,696 KB
testcase_18 AC 215 ms
104,976 KB
testcase_19 AC 200 ms
104,684 KB
testcase_20 AC 154 ms
95,340 KB
testcase_21 AC 106 ms
90,416 KB
testcase_22 AC 66 ms
74,284 KB
testcase_23 AC 94 ms
81,316 KB
testcase_24 AC 138 ms
91,096 KB
testcase_25 AC 164 ms
97,812 KB
testcase_26 AC 172 ms
95,548 KB
testcase_27 AC 110 ms
83,924 KB
testcase_28 AC 198 ms
102,112 KB
testcase_29 AC 170 ms
96,608 KB
testcase_30 AC 55 ms
67,972 KB
testcase_31 AC 125 ms
89,812 KB
testcase_32 AC 71 ms
74,728 KB
testcase_33 AC 175 ms
97,488 KB
testcase_34 AC 171 ms
100,048 KB
testcase_35 AC 92 ms
81,936 KB
testcase_36 AC 154 ms
93,132 KB
testcase_37 AC 110 ms
86,040 KB
testcase_38 AC 90 ms
80,452 KB
testcase_39 AC 163 ms
94,188 KB
testcase_40 AC 114 ms
84,424 KB
testcase_41 AC 168 ms
95,416 KB
testcase_42 AC 154 ms
95,248 KB
testcase_43 AC 195 ms
102,748 KB
testcase_44 AC 184 ms
99,584 KB
testcase_45 AC 155 ms
93,608 KB
testcase_46 AC 115 ms
87,896 KB
testcase_47 AC 127 ms
86,168 KB
testcase_48 AC 100 ms
84,412 KB
testcase_49 AC 112 ms
85,260 KB
testcase_50 AC 226 ms
104,668 KB
testcase_51 AC 205 ms
104,744 KB
testcase_52 AC 206 ms
104,496 KB
testcase_53 AC 209 ms
103,928 KB
testcase_54 AC 199 ms
104,072 KB
testcase_55 AC 37 ms
53,508 KB
testcase_56 AC 34 ms
52,528 KB
testcase_57 AC 145 ms
91,760 KB
testcase_58 AC 64 ms
82,548 KB
testcase_59 AC 35 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline
n, m, k = map(int, input().split())
a = list(map(int, input().split()))
d0 = [0 for i in range(n + 1)]
for i in a:
    if i <= n:
        d0[i] += 1
d1 = [0 for i in range(n + 1)]
for i in range(1, n + 1):
    for j in range(i, n + 1, i):
        d1[j] += d0[i]
ans = 0
mod = 998244353
m_inv = pow(m, mod - 2, mod)
m_cnt = [0 for i in range(m + 1)]
for i in range(1, n + 1):
    m_cnt[d1[i]] += 1
for i in range(1, m + 1):
    ans += (1 - pow((m - i) * m_inv, k, mod)) * m_cnt[i]
print(ans % mod)
0