結果

問題 No.2963 Mecha DESU
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 15:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-11-16 15:53:58
合計ジャッジ時間 20,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,392 KB
testcase_01 AC 43 ms
59,392 KB
testcase_02 AC 43 ms
59,520 KB
testcase_03 AC 42 ms
59,520 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 44 ms
59,392 KB
testcase_06 AC 43 ms
59,392 KB
testcase_07 AC 43 ms
59,776 KB
testcase_08 AC 43 ms
59,520 KB
testcase_09 AC 44 ms
59,520 KB
testcase_10 AC 43 ms
59,776 KB
testcase_11 AC 43 ms
59,392 KB
testcase_12 AC 48 ms
59,648 KB
testcase_13 AC 584 ms
105,088 KB
testcase_14 AC 569 ms
105,088 KB
testcase_15 AC 576 ms
104,960 KB
testcase_16 AC 545 ms
104,832 KB
testcase_17 AC 594 ms
104,832 KB
testcase_18 AC 533 ms
104,832 KB
testcase_19 AC 564 ms
105,088 KB
testcase_20 AC 350 ms
98,176 KB
testcase_21 AC 124 ms
95,744 KB
testcase_22 AC 102 ms
79,360 KB
testcase_23 AC 82 ms
87,040 KB
testcase_24 AC 395 ms
94,464 KB
testcase_25 AC 390 ms
100,352 KB
testcase_26 AC 510 ms
96,256 KB
testcase_27 AC 285 ms
88,832 KB
testcase_28 AC 503 ms
103,808 KB
testcase_29 AC 387 ms
99,968 KB
testcase_30 AC 83 ms
73,088 KB
testcase_31 AC 214 ms
95,744 KB
testcase_32 AC 131 ms
78,848 KB
testcase_33 AC 505 ms
99,328 KB
testcase_34 AC 336 ms
102,528 KB
testcase_35 AC 157 ms
86,016 KB
testcase_36 AC 360 ms
94,720 KB
testcase_37 AC 115 ms
91,008 KB
testcase_38 AC 206 ms
85,760 KB
testcase_39 AC 375 ms
95,872 KB
testcase_40 AC 306 ms
88,576 KB
testcase_41 AC 487 ms
97,280 KB
testcase_42 AC 364 ms
98,048 KB
testcase_43 AC 552 ms
103,296 KB
testcase_44 AC 462 ms
99,712 KB
testcase_45 AC 476 ms
95,104 KB
testcase_46 AC 263 ms
92,288 KB
testcase_47 AC 336 ms
88,960 KB
testcase_48 AC 169 ms
90,240 KB
testcase_49 AC 332 ms
87,936 KB
testcase_50 AC 562 ms
104,448 KB
testcase_51 AC 604 ms
104,704 KB
testcase_52 AC 516 ms
104,832 KB
testcase_53 AC 463 ms
103,552 KB
testcase_54 AC 535 ms
103,552 KB
testcase_55 AC 42 ms
59,264 KB
testcase_56 AC 43 ms
59,520 KB
testcase_57 AC 227 ms
91,008 KB
testcase_58 AC 77 ms
87,680 KB
testcase_59 AC 43 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
a=list(map(int,input().split()))
M=998244353
L=10**6
c=[0]*(L+1)
for v in a:
  c[v]+=1
p=[0]*(n+1)
for i in range(1,n+1):
  for j in range(i,n+1,i):
    p[j]+=c[i]
e=0
im=pow(m,M-2,M)
for i in range(1,n+1):
  e+=pow((m-p[i])*im,k,M)
  e%=M
print((n-e)%M)
0