結果

問題 No.2963 Mecha DESU
ユーザー ntudantuda
提出日時 2024-11-30 12:24:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 439 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 141,440 KB
最終ジャッジ日時 2024-11-30 12:24:40
合計ジャッジ時間 12,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,880 KB
testcase_01 AC 38 ms
141,056 KB
testcase_02 AC 39 ms
59,264 KB
testcase_03 AC 38 ms
53,248 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 40 ms
53,376 KB
testcase_07 AC 38 ms
53,504 KB
testcase_08 AC 47 ms
53,504 KB
testcase_09 AC 39 ms
53,504 KB
testcase_10 AC 38 ms
53,504 KB
testcase_11 AC 38 ms
53,376 KB
testcase_12 AC 37 ms
53,760 KB
testcase_13 AC 99 ms
97,972 KB
testcase_14 AC 98 ms
98,160 KB
testcase_15 AC 98 ms
98,048 KB
testcase_16 AC 113 ms
97,920 KB
testcase_17 AC 97 ms
97,972 KB
testcase_18 AC 100 ms
97,976 KB
testcase_19 AC 107 ms
97,936 KB
testcase_20 AC 90 ms
91,344 KB
testcase_21 AC 82 ms
90,752 KB
testcase_22 AC 59 ms
73,088 KB
testcase_23 AC 81 ms
81,024 KB
testcase_24 AC 79 ms
86,996 KB
testcase_25 AC 91 ms
93,696 KB
testcase_26 AC 84 ms
89,204 KB
testcase_27 AC 66 ms
81,664 KB
testcase_28 AC 101 ms
96,624 KB
testcase_29 AC 89 ms
92,928 KB
testcase_30 AC 48 ms
65,920 KB
testcase_31 AC 75 ms
86,540 KB
testcase_32 AC 52 ms
70,144 KB
testcase_33 AC 90 ms
92,672 KB
testcase_34 AC 93 ms
95,432 KB
testcase_35 AC 60 ms
77,568 KB
testcase_36 AC 80 ms
87,296 KB
testcase_37 AC 83 ms
83,840 KB
testcase_38 AC 56 ms
74,880 KB
testcase_39 AC 83 ms
88,960 KB
testcase_40 AC 69 ms
81,004 KB
testcase_41 AC 85 ms
90,228 KB
testcase_42 AC 90 ms
91,392 KB
testcase_43 AC 93 ms
96,128 KB
testcase_44 AC 94 ms
93,032 KB
testcase_45 AC 83 ms
87,552 KB
testcase_46 AC 77 ms
85,376 KB
testcase_47 AC 70 ms
81,536 KB
testcase_48 AC 62 ms
80,088 KB
testcase_49 AC 59 ms
76,928 KB
testcase_50 AC 172 ms
97,664 KB
testcase_51 AC 143 ms
97,644 KB
testcase_52 AC 143 ms
97,920 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 39 ms
53,248 KB
testcase_56 AC 38 ms
53,120 KB
testcase_57 AC 90 ms
83,456 KB
testcase_58 AC 63 ms
83,072 KB
testcase_59 AC 37 ms
141,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

MOD = 998244353
N, M, K = map(int, input().split())
A = list(map(int, input().split()))
X = [0] * (N + 1)
for a in A:
    for i in range(1, N // a + 1):
        X[i * a] += 1

all = pow(M, K, MOD)

dic = defaultdict(int)
for x in X:
    dic[x] += 1

ans = all * (N + 1)
ans %= MOD
for k, v in dic.items():
    ans -= v * pow(M - k, K, MOD)
    ans %= MOD
ans *= pow(all, -1, MOD)
ans %= MOD
print(ans)
0