結果

問題 No.2963 Mecha DESU
ユーザー timitimi
提出日時 2024-11-20 11:26:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 184,832 KB
最終ジャッジ日時 2024-11-20 11:27:31
合計ジャッジ時間 78,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,856 KB
testcase_01 AC 40 ms
172,532 KB
testcase_02 AC 41 ms
57,984 KB
testcase_03 WA -
testcase_04 AC 42 ms
57,472 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 WA -
testcase_10 AC 49 ms
52,864 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 WA -
testcase_36 TLE -
testcase_37 WA -
testcase_38 WA -
testcase_39 TLE -
testcase_40 WA -
testcase_41 TLE -
testcase_42 WA -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 WA -
testcase_54 AC 1,760 ms
96,640 KB
testcase_55 AC 38 ms
52,992 KB
testcase_56 AC 39 ms
52,480 KB
testcase_57 AC 96 ms
83,672 KB
testcase_58 AC 113 ms
110,040 KB
testcase_59 AC 40 ms
176,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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


for a in A:
  if a not in D:
    D[a]=0
  D[a]+=1
  
B=[]
for d in D:
  B.append((d,d,D[d]))
	
import heapq
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