結果

問題 No.2963 Mecha DESU
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 15:51:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 579,716 KB
最終ジャッジ日時 2024-11-16 15:53:30
合計ジャッジ時間 108,929 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
64,512 KB
testcase_01 AC 45 ms
392,008 KB
testcase_02 AC 45 ms
64,768 KB
testcase_03 AC 46 ms
392,512 KB
testcase_04 AC 44 ms
64,768 KB
testcase_05 AC 44 ms
392,128 KB
testcase_06 AC 45 ms
64,768 KB
testcase_07 AC 45 ms
392,256 KB
testcase_08 AC 46 ms
64,896 KB
testcase_09 AC 45 ms
398,404 KB
testcase_10 AC 45 ms
64,896 KB
testcase_11 AC 45 ms
398,644 KB
testcase_12 AC 45 ms
64,768 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 465 ms
448,052 KB
testcase_22 AC 412 ms
120,704 KB
testcase_23 AC 125 ms
356,864 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 233 ms
102,400 KB
testcase_31 AC 1,346 ms
504,464 KB
testcase_32 AC 598 ms
133,248 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 1,151 ms
438,016 KB
testcase_36 TLE -
testcase_37 AC 266 ms
415,700 KB
testcase_38 AC 1,424 ms
189,824 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 1,015 ms
163,456 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 43 ms
64,768 KB
testcase_56 AC 42 ms
60,032 KB
testcase_57 TLE -
testcase_58 AC 70 ms
87,424 KB
testcase_59 AC 43 ms
59,264 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=[[] for i in range(n+1)]
for i in range(1,n+1):
  for j in range(i,n+1,i):
    p[j]+=[i]
e=0
for i in range(1,n+1):
  e+=pow((m-sum(c[j] for j in p[i]))*pow(m,M-2,M),k,M)
  e%=M
print((n-e)%M)
0