結果

問題 No.2832 Nana's Fickle Adventure
ユーザー 👑 p-adicp-adic
提出日時 2024-06-20 21:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,621 ms / 3,000 ms
コード長 724 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 80,840 KB
最終ジャッジ日時 2024-08-02 13:20:48
合計ジャッジ時間 27,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,776 KB
testcase_01 AC 326 ms
77,668 KB
testcase_02 AC 58 ms
68,248 KB
testcase_03 AC 684 ms
78,536 KB
testcase_04 AC 461 ms
77,660 KB
testcase_05 AC 131 ms
77,424 KB
testcase_06 AC 43 ms
55,480 KB
testcase_07 AC 64 ms
69,456 KB
testcase_08 AC 178 ms
77,316 KB
testcase_09 AC 137 ms
77,116 KB
testcase_10 AC 176 ms
77,376 KB
testcase_11 AC 632 ms
78,568 KB
testcase_12 AC 859 ms
78,496 KB
testcase_13 AC 79 ms
76,620 KB
testcase_14 AC 43 ms
55,296 KB
testcase_15 AC 37 ms
53,116 KB
testcase_16 AC 42 ms
59,272 KB
testcase_17 AC 63 ms
72,632 KB
testcase_18 AC 1,163 ms
79,568 KB
testcase_19 AC 1,160 ms
80,556 KB
testcase_20 AC 1,621 ms
80,200 KB
testcase_21 AC 1,597 ms
79,632 KB
testcase_22 AC 1,133 ms
80,304 KB
testcase_23 AC 1,599 ms
79,476 KB
testcase_24 AC 1,128 ms
80,140 KB
testcase_25 AC 1,575 ms
79,812 KB
testcase_26 AC 1,587 ms
80,840 KB
testcase_27 AC 113 ms
76,512 KB
testcase_28 AC 168 ms
77,128 KB
testcase_29 AC 690 ms
78,376 KB
testcase_30 AC 945 ms
79,272 KB
testcase_31 AC 1,124 ms
80,088 KB
testcase_32 AC 391 ms
78,312 KB
testcase_33 AC 59 ms
69,896 KB
testcase_34 AC 78 ms
76,076 KB
testcase_35 AC 137 ms
76,996 KB
testcase_36 AC 49 ms
63,744 KB
testcase_37 AC 1,420 ms
79,712 KB
testcase_38 AC 81 ms
76,272 KB
testcase_39 AC 690 ms
79,008 KB
testcase_40 AC 436 ms
78,072 KB
testcase_41 AC 631 ms
78,488 KB
testcase_42 AC 694 ms
78,660 KB
testcase_43 AC 1,065 ms
79,424 KB
testcase_44 AC 106 ms
76,504 KB
testcase_45 AC 85 ms
76,108 KB
testcase_46 AC 105 ms
76,500 KB
testcase_47 AC 557 ms
77,924 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