結果

問題 No.1507 Road Blocked
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-08 00:12:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,004 KB
最終ジャッジ日時 2024-11-08 00:13:11
合計ジャッジ時間 12,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,096 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 221 ms
93,004 KB
testcase_04 AC 365 ms
90,368 KB
testcase_05 AC 320 ms
90,112 KB
testcase_06 AC 347 ms
90,112 KB
testcase_07 AC 336 ms
90,368 KB
testcase_08 AC 370 ms
90,496 KB
testcase_09 AC 346 ms
90,240 KB
testcase_10 AC 347 ms
89,984 KB
testcase_11 AC 380 ms
90,240 KB
testcase_12 AC 357 ms
90,240 KB
testcase_13 AC 375 ms
90,496 KB
testcase_14 AC 373 ms
90,112 KB
testcase_15 AC 392 ms
90,496 KB
testcase_16 AC 372 ms
90,368 KB
testcase_17 AC 366 ms
90,496 KB
testcase_18 AC 380 ms
90,368 KB
testcase_19 AC 364 ms
90,496 KB
testcase_20 AC 370 ms
90,368 KB
testcase_21 AC 377 ms
90,240 KB
testcase_22 AC 369 ms
90,624 KB
testcase_23 AC 375 ms
90,368 KB
testcase_24 AC 369 ms
90,368 KB
testcase_25 AC 362 ms
90,496 KB
testcase_26 AC 381 ms
90,496 KB
testcase_27 AC 369 ms
90,368 KB
testcase_28 AC 385 ms
90,496 KB
testcase_29 AC 398 ms
90,112 KB
testcase_30 AC 358 ms
90,368 KB
testcase_31 AC 366 ms
90,752 KB
testcase_32 AC 363 ms
90,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=[[] for i in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
M=998244353
p=0
v=[0]*n
c=[0]*n
q=[0]
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    q+=[t for t in e[s] if v[t]==0]
  else:
    c[s]+=1
    c[s]+=sum(c[t]*(v[t]==0) for t in e[s])
    if s!=0:
      p+=c[s]*(c[s]-1)+(n-c[s])*(n-c[s]-1)
      p%=M
    v[s]=0
    q.pop()
print(p*pow(n*(n-1)*(n-1),M-2,M)%M)
0