結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,124 KB
testcase_01 AC 38 ms
52,500 KB
testcase_02 AC 39 ms
53,408 KB
testcase_03 AC 39 ms
53,488 KB
testcase_04 AC 39 ms
54,028 KB
testcase_05 AC 39 ms
52,220 KB
testcase_06 AC 36 ms
52,860 KB
testcase_07 AC 37 ms
53,792 KB
testcase_08 AC 36 ms
53,300 KB
testcase_09 AC 37 ms
53,248 KB
testcase_10 AC 38 ms
52,544 KB
testcase_11 AC 36 ms
52,716 KB
testcase_12 AC 37 ms
53,072 KB
testcase_13 AC 179 ms
104,944 KB
testcase_14 AC 185 ms
104,932 KB
testcase_15 AC 182 ms
105,056 KB
testcase_16 AC 179 ms
105,032 KB
testcase_17 AC 184 ms
104,700 KB
testcase_18 AC 177 ms
104,736 KB
testcase_19 AC 174 ms
104,932 KB
testcase_20 AC 127 ms
95,236 KB
testcase_21 AC 78 ms
89,452 KB
testcase_22 AC 62 ms
75,036 KB
testcase_23 AC 64 ms
80,972 KB
testcase_24 AC 129 ms
91,344 KB
testcase_25 AC 142 ms
97,976 KB
testcase_26 AC 177 ms
95,620 KB
testcase_27 AC 101 ms
84,172 KB
testcase_28 AC 157 ms
102,092 KB
testcase_29 AC 130 ms
96,408 KB
testcase_30 AC 54 ms
67,088 KB
testcase_31 AC 94 ms
89,852 KB
testcase_32 AC 65 ms
73,880 KB
testcase_33 AC 150 ms
97,976 KB
testcase_34 AC 146 ms
100,332 KB
testcase_35 AC 83 ms
82,396 KB
testcase_36 AC 150 ms
92,996 KB
testcase_37 AC 71 ms
85,648 KB
testcase_38 AC 84 ms
80,508 KB
testcase_39 AC 148 ms
94,184 KB
testcase_40 AC 103 ms
84,452 KB
testcase_41 AC 144 ms
95,188 KB
testcase_42 AC 133 ms
94,912 KB
testcase_43 AC 173 ms
102,868 KB
testcase_44 AC 180 ms
99,732 KB
testcase_45 AC 151 ms
93,432 KB
testcase_46 AC 104 ms
87,904 KB
testcase_47 AC 122 ms
86,252 KB
testcase_48 AC 83 ms
84,120 KB
testcase_49 AC 115 ms
85,256 KB
testcase_50 AC 183 ms
104,564 KB
testcase_51 AC 185 ms
104,708 KB
testcase_52 AC 177 ms
104,960 KB
testcase_53 AC 186 ms
103,944 KB
testcase_54 AC 178 ms
103,832 KB
testcase_55 AC 38 ms
52,452 KB
testcase_56 AC 37 ms
53,544 KB
testcase_57 AC 176 ms
91,152 KB
testcase_58 AC 65 ms
81,560 KB
testcase_59 AC 37 ms
52,084 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):
    if m_cnt[i] == 0:
        continue
    ans += (1 - pow((m - i) * m_inv, k, mod)) * m_cnt[i]
print(ans % mod)
0