結果

問題 No.2832 Nana's Fickle Adventure
ユーザー 👑 p-adicp-adic
提出日時 2024-06-20 21:53:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 724 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-08-02 13:21:27
合計ジャッジ時間 17,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 873 ms
11,136 KB
testcase_02 AC 29 ms
11,136 KB
testcase_03 AC 1,920 ms
11,648 KB
testcase_04 AC 1,005 ms
11,392 KB
testcase_05 AC 118 ms
11,264 KB
testcase_06 AC 28 ms
11,136 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 240 ms
11,264 KB
testcase_09 AC 116 ms
11,264 KB
testcase_10 AC 239 ms
11,264 KB
testcase_11 AC 1,847 ms
11,648 KB
testcase_12 AC 1,870 ms
11,520 KB
testcase_13 AC 36 ms
11,008 KB
testcase_14 AC 29 ms
11,136 KB
testcase_15 AC 27 ms
11,008 KB
testcase_16 AC 28 ms
11,008 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 2,396 ms
11,008 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 89 ms
11,008 KB
testcase_28 AC 184 ms
11,264 KB
testcase_29 AC 1,958 ms
11,392 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 973 ms
11,392 KB
testcase_33 AC 32 ms
11,008 KB
testcase_34 AC 45 ms
11,008 KB
testcase_35 AC 190 ms
11,136 KB
testcase_36 AC 29 ms
11,008 KB
testcase_37 TLE -
testcase_38 AC 50 ms
11,008 KB
testcase_39 AC 2,037 ms
11,392 KB
testcase_40 AC 1,001 ms
11,392 KB
testcase_41 AC 1,751 ms
11,520 KB
testcase_42 AC 1,965 ms
11,392 KB
testcase_43 TLE -
testcase_44 AC 81 ms
11,008 KB
testcase_45 AC 45 ms
11,136 KB
testcase_46 AC 81 ms
11,136 KB
testcase_47 AC 1,059 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M,X=J()
L=N*N
E=[0]*L
D=[0]*N
for j in R(M):
	u,v=J();u-=1;v-=1;E[u*N+v]+=1;D[u]+=1
	if u!=v:E[v*N+u]+=1;D[v]+=1
I=[0,1]
P=998244353
for j in R(2,M+1):I+=[P-P//j*I[P%j]]
T=[[0]*L for i in R(L)]
for i in R(N):
	for j in R(N):
		x=N*i+j
		if D[j]>1:
			if E[x]:
				for k in R(N):y=N*j+k;T[x][y]=(E[y]-(k==i))*I[D[j]-1]
		elif i==j:
			for k in R(N):y=N*j+k;T[x][y]=E[y]
			if D[j]<1:T[x][x]=1
		elif E[x]:T[x][N*j+j]=1
v=[0]*L
if D[0]:
	for j in R(N):v[j]=E[j]*I[D[0]]%P
else:v[0]=1
X-=1
while X:
	if X&1:v=[sum(v[i]*T[i][j]for i in R(L))%P for j in R(L)]
	T=[[sum(T[i][j]*T[j][k]for j in R(L))%P for k in R(L)]for i in R(L)];X>>=1
for j in R(N):print(sum(v[N*i+j]for i in R(N))%P)
0