結果

問題 No.2963 Mecha DESU
ユーザー ゼットゼット
提出日時 2024-11-16 16:33:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 613 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-11-16 16:33:25
合計ジャッジ時間 19,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 47 ms
51,456 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 40 ms
51,584 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 592 ms
105,088 KB
testcase_14 AC 610 ms
104,960 KB
testcase_15 AC 569 ms
104,960 KB
testcase_16 AC 588 ms
104,960 KB
testcase_17 AC 590 ms
105,088 KB
testcase_18 AC 613 ms
105,088 KB
testcase_19 AC 541 ms
104,832 KB
testcase_20 AC 392 ms
95,360 KB
testcase_21 AC 125 ms
91,264 KB
testcase_22 AC 95 ms
73,728 KB
testcase_23 AC 81 ms
80,256 KB
testcase_24 AC 359 ms
91,520 KB
testcase_25 AC 398 ms
98,048 KB
testcase_26 AC 547 ms
95,872 KB
testcase_27 AC 263 ms
84,352 KB
testcase_28 AC 536 ms
102,272 KB
testcase_29 AC 389 ms
96,640 KB
testcase_30 AC 77 ms
66,816 KB
testcase_31 AC 200 ms
89,984 KB
testcase_32 AC 121 ms
74,112 KB
testcase_33 AC 413 ms
97,536 KB
testcase_34 AC 350 ms
100,352 KB
testcase_35 AC 165 ms
81,664 KB
testcase_36 AC 348 ms
93,440 KB
testcase_37 AC 109 ms
84,992 KB
testcase_38 AC 191 ms
80,640 KB
testcase_39 AC 373 ms
94,208 KB
testcase_40 AC 298 ms
84,224 KB
testcase_41 AC 499 ms
95,360 KB
testcase_42 AC 379 ms
95,104 KB
testcase_43 AC 556 ms
103,424 KB
testcase_44 AC 502 ms
99,712 KB
testcase_45 AC 517 ms
93,824 KB
testcase_46 AC 242 ms
87,936 KB
testcase_47 AC 344 ms
86,144 KB
testcase_48 AC 181 ms
83,712 KB
testcase_49 AC 342 ms
85,248 KB
testcase_50 AC 596 ms
104,576 KB
testcase_51 AC 602 ms
104,960 KB
testcase_52 AC 540 ms
104,704 KB
testcase_53 AC 486 ms
103,680 KB
testcase_54 AC 600 ms
103,552 KB
testcase_55 AC 40 ms
51,712 KB
testcase_56 AC 40 ms
51,712 KB
testcase_57 AC 197 ms
91,136 KB
testcase_58 AC 67 ms
79,872 KB
testcase_59 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(map(int,input().split()))
mod=998244353
v=[0]*(N+1)
u=[0]*(N+1)
result=0
for i in range(M):
  if A[i]>N:
    continue
  u[A[i]]+=1
for x in range(1,N+1):
  for y in range(1,N+1):
    if x*y>N:
      break
    v[x*y]+=u[x]
p=pow(M,-1,mod)
for x in range(1,N+1):
  count=v[x]
  q=count*p
  q%=mod
  ans=1-pow(1-q,K,mod)
  result+=ans
  result%=mod
print(result)
0