結果

問題 No.2963 Mecha DESU
ユーザー timitimi
提出日時 2024-11-20 11:35:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 572 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 213,584 KB
最終ジャッジ日時 2024-11-20 11:37:36
合計ジャッジ時間 102,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,340 KB
testcase_01 AC 42 ms
168,296 KB
testcase_02 AC 42 ms
61,604 KB
testcase_03 AC 43 ms
60,860 KB
testcase_04 AC 44 ms
59,212 KB
testcase_05 AC 41 ms
168,696 KB
testcase_06 AC 42 ms
59,852 KB
testcase_07 AC 42 ms
166,584 KB
testcase_08 AC 43 ms
61,012 KB
testcase_09 AC 43 ms
53,372 KB
testcase_10 AC 42 ms
61,488 KB
testcase_11 AC 42 ms
52,560 KB
testcase_12 AC 41 ms
59,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 1,203 ms
113,928 KB
testcase_22 AC 583 ms
91,192 KB
testcase_23 AC 317 ms
213,372 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,896 ms
199,524 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 236 ms
85,280 KB
testcase_31 AC 1,819 ms
202,948 KB
testcase_32 AC 562 ms
88,900 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 1,288 ms
196,432 KB
testcase_36 TLE -
testcase_37 AC 628 ms
212,912 KB
testcase_38 AC 1,351 ms
90,652 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,192 ms
97,068 KB
testcase_49 AC 1,228 ms
205,748 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 42 ms
53,232 KB
testcase_56 AC 42 ms
53,288 KB
testcase_57 AC 95 ms
83,644 KB
testcase_58 AC 196 ms
106,112 KB
testcase_59 AC 42 ms
175,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


dp=[0]*(N+1)
mod=998244353
D={}
import heapq

for a in A:
  if a not in D:
    D[a]=0
  D[a]+=1
  
B=[]
for d in D:
  heapq.heappush(B,(d,d,D[d]))
	
for i in range(1,N+1):
	while B:
		x,y,z=heapq.heappop(B)
		if i!=x:
			heapq.heappush(B,(x,y,z))
			break 
		else:
			dp[x]+=z
			dp[x]%=mod
			x+=y
			heapq.heappush(B,(x,y,z))
	

D={};ans=0;pp=pow(M,K,mod)
for i in range(1,N+1):
  d=dp[i]
  if d in D:
    ans+=D[d]
  else:
    p=pow(M-d,K,mod)
    ans+=pp-p
    D[d]=pp-p
print(ans*pow(pp,-1,mod)%mod)
0