結果

問題 No.2963 Mecha DESU
ユーザー titiatitia
提出日時 2024-11-24 04:15:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 114,304 KB
最終ジャッジ日時 2024-11-24 04:16:16
合計ジャッジ時間 17,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 36 ms
53,888 KB
testcase_04 AC 36 ms
53,376 KB
testcase_05 AC 39 ms
53,248 KB
testcase_06 AC 37 ms
53,120 KB
testcase_07 AC 37 ms
53,504 KB
testcase_08 AC 63 ms
53,376 KB
testcase_09 AC 37 ms
53,496 KB
testcase_10 AC 37 ms
53,888 KB
testcase_11 AC 36 ms
53,504 KB
testcase_12 AC 37 ms
53,760 KB
testcase_13 AC 524 ms
113,920 KB
testcase_14 AC 516 ms
113,916 KB
testcase_15 AC 501 ms
114,048 KB
testcase_16 AC 497 ms
114,304 KB
testcase_17 AC 534 ms
113,920 KB
testcase_18 AC 488 ms
113,920 KB
testcase_19 AC 500 ms
114,048 KB
testcase_20 AC 322 ms
102,652 KB
testcase_21 AC 132 ms
106,876 KB
testcase_22 AC 84 ms
76,928 KB
testcase_23 AC 86 ms
96,276 KB
testcase_24 AC 322 ms
90,880 KB
testcase_25 AC 365 ms
107,776 KB
testcase_26 AC 438 ms
94,464 KB
testcase_27 AC 218 ms
79,872 KB
testcase_28 AC 493 ms
112,640 KB
testcase_29 AC 356 ms
107,008 KB
testcase_30 AC 65 ms
66,688 KB
testcase_31 AC 178 ms
96,384 KB
testcase_32 AC 103 ms
71,936 KB
testcase_33 AC 395 ms
105,472 KB
testcase_34 AC 318 ms
111,616 KB
testcase_35 AC 140 ms
80,256 KB
testcase_36 AC 280 ms
91,520 KB
testcase_37 AC 111 ms
99,968 KB
testcase_38 AC 156 ms
75,008 KB
testcase_39 AC 335 ms
97,992 KB
testcase_40 AC 245 ms
78,080 KB
testcase_41 AC 408 ms
100,096 KB
testcase_42 AC 364 ms
103,808 KB
testcase_43 AC 479 ms
110,376 KB
testcase_44 AC 391 ms
104,320 KB
testcase_45 AC 442 ms
89,344 KB
testcase_46 AC 217 ms
93,260 KB
testcase_47 AC 268 ms
76,928 KB
testcase_48 AC 160 ms
85,888 KB
testcase_49 AC 267 ms
69,120 KB
testcase_50 AC 663 ms
113,664 KB
testcase_51 AC 645 ms
113,720 KB
testcase_52 AC 601 ms
113,664 KB
testcase_53 AC 381 ms
90,880 KB
testcase_54 AC 475 ms
91,264 KB
testcase_55 AC 39 ms
53,248 KB
testcase_56 AC 37 ms
53,504 KB
testcase_57 AC 66 ms
68,224 KB
testcase_58 AC 80 ms
100,864 KB
testcase_59 AC 38 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,M,K=map(int,input().split())
A=list(map(int,input().split()))

mod=998244353

C=Counter(A)

LIST=[0]*(N+1)

for c in C:
    for i in range(c,N+1,c):
        LIST[i]+=C[c]
        
ANS=0
INV=pow(M,mod-2,mod)

for i in range(1,N+1):
    x=LIST[i]

    ANS+=pow((M-x)*INV,K,mod)
    ANS%=mod

print((N-ANS)%mod)
0