結果

問題 No.2963 Mecha DESU
ユーザー hato336hato336
提出日時 2024-11-16 15:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 116,992 KB
最終ジャッジ日時 2024-11-16 15:55:17
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,304 KB
testcase_01 AC 52 ms
66,176 KB
testcase_02 AC 51 ms
66,304 KB
testcase_03 AC 51 ms
66,048 KB
testcase_04 AC 52 ms
65,920 KB
testcase_05 AC 51 ms
66,048 KB
testcase_06 AC 51 ms
66,048 KB
testcase_07 AC 51 ms
66,048 KB
testcase_08 AC 50 ms
66,048 KB
testcase_09 AC 52 ms
66,304 KB
testcase_10 AC 50 ms
66,432 KB
testcase_11 AC 56 ms
66,304 KB
testcase_12 AC 50 ms
66,304 KB
testcase_13 AC 510 ms
116,096 KB
testcase_14 AC 481 ms
116,352 KB
testcase_15 AC 498 ms
116,096 KB
testcase_16 AC 478 ms
116,992 KB
testcase_17 AC 498 ms
116,608 KB
testcase_18 AC 451 ms
116,352 KB
testcase_19 AC 450 ms
116,608 KB
testcase_20 AC 336 ms
104,192 KB
testcase_21 AC 139 ms
109,184 KB
testcase_22 AC 102 ms
80,896 KB
testcase_23 AC 107 ms
102,016 KB
testcase_24 AC 320 ms
96,384 KB
testcase_25 AC 329 ms
109,952 KB
testcase_26 AC 459 ms
97,792 KB
testcase_27 AC 222 ms
83,712 KB
testcase_28 AC 454 ms
116,480 KB
testcase_29 AC 360 ms
109,824 KB
testcase_30 AC 83 ms
74,240 KB
testcase_31 AC 189 ms
102,272 KB
testcase_32 AC 121 ms
78,848 KB
testcase_33 AC 360 ms
107,392 KB
testcase_34 AC 319 ms
113,536 KB
testcase_35 AC 147 ms
84,608 KB
testcase_36 AC 282 ms
94,336 KB
testcase_37 AC 127 ms
105,216 KB
testcase_38 AC 162 ms
79,872 KB
testcase_39 AC 292 ms
98,176 KB
testcase_40 AC 265 ms
83,456 KB
testcase_41 AC 391 ms
101,632 KB
testcase_42 AC 345 ms
105,856 KB
testcase_43 AC 474 ms
112,640 KB
testcase_44 AC 383 ms
105,344 KB
testcase_45 AC 407 ms
93,184 KB
testcase_46 AC 213 ms
93,952 KB
testcase_47 AC 294 ms
82,048 KB
testcase_48 AC 161 ms
89,344 KB
testcase_49 AC 269 ms
77,440 KB
testcase_50 AC 513 ms
115,584 KB
testcase_51 AC 585 ms
115,584 KB
testcase_52 AC 477 ms
115,584 KB
testcase_53 AC 407 ms
96,896 KB
testcase_54 AC 441 ms
97,280 KB
testcase_55 AC 51 ms
66,048 KB
testcase_56 AC 52 ms
66,176 KB
testcase_57 AC 88 ms
76,928 KB
testcase_58 AC 92 ms
105,984 KB
testcase_59 AC 52 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n,m,k = map(int,input().split())
a = list(map(int,input().split()))
mod = 998244353
cnt = [0 for i in range(1000000+10)]
for i in a:
    cnt[i] += 1
x = [0 for i in range(n+1)]
b = set(a)
for i in b:
    j = i
    while j <= n:
        x[j] += cnt[i]
        j += i
ans = 0
inv = pow(m,mod-2,mod)
for i in range(1,n+1):

    ans += (1 - pow((m-x[i])*inv%mod,k,mod)) % mod
    ans %= mod
print(ans)
0