結果

問題 No.2531 Coloring Vertices on Namori
ユーザー 👑 p-adicp-adic
提出日時 2023-10-24 10:18:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,448 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 74,796 KB
最終ジャッジ日時 2024-09-23 02:45:21
合計ジャッジ時間 35,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 1,103 ms
69,324 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 1,074 ms
69,192 KB
testcase_08 AC 1,264 ms
69,320 KB
testcase_09 AC 1,278 ms
69,448 KB
testcase_10 AC 1,249 ms
69,324 KB
testcase_11 AC 1,178 ms
74,796 KB
testcase_12 AC 1,176 ms
74,688 KB
testcase_13 AC 1,145 ms
74,460 KB
testcase_14 AC 1,227 ms
69,192 KB
testcase_15 AC 1,203 ms
69,192 KB
testcase_16 AC 1,201 ms
69,320 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 1,417 ms
71,496 KB
testcase_21 AC 1,434 ms
71,240 KB
testcase_22 AC 1,436 ms
71,248 KB
testcase_23 AC 1,405 ms
71,240 KB
testcase_24 AC 1,417 ms
71,096 KB
testcase_25 AC 1,415 ms
71,340 KB
testcase_26 AC 1,448 ms
71,368 KB
testcase_27 AC 1,448 ms
71,368 KB
testcase_28 AC 1,438 ms
71,356 KB
testcase_29 AC 1,442 ms
71,396 KB
testcase_30 AC 1,413 ms
71,368 KB
testcase_31 AC 1,416 ms
71,332 KB
testcase_32 AC 1,422 ms
71,228 KB
testcase_33 AC 1,427 ms
71,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

J=lambda:map(int,input().split())
N,K=J()
L=range(N)
E=[0]+[set()for i in L]
for i in L:
	u,v=J()
	E[u].add(v),E[v].add(u)
l=N
for i in L:
	r=i+1
	while len(E[r])==1:
		l,j=l-1,E[r].pop()
		E[j].remove(r)
		r=j
P=998244353
print(pow(K-1,N-l+1,P)*(pow(K-1,l-1,P)+1-l%2*2)%P)
0