結果
問題 | No.2638 Initial fare |
ユーザー | ID 21712 |
提出日時 | 2024-11-11 15:36:31 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 497 bytes |
コンパイル時間 | 12,431 ms |
コンパイル使用メモリ | 229,180 KB |
実行使用メモリ | 19,712 KB |
最終ジャッジ日時 | 2024-11-11 15:37:25 |
合計ジャッジ時間 | 39,086 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
package main import . "fmt" func main() { var n int Scan(&n) tree:=make([][]int,n+1) for e:=0;e<n-1;e++ { var u,v int Scan(&u,&v) tree[u]=append(tree[u],v) tree[v]=append(tree[v],u) } visited:=make([]bool,n+1) var ans int var dfs func(t int) (a,b,c int) dfs = func(t int) (a,b,c int){ visited[t]=true for _,k:=range tree[t] { if visited[k] { continue } x,y,z:=dfs(k) ans+=c*x+b*y+z b+=x c+=y } a=1 return } _,_,g:=dfs(1) ans+=g Println(ans) }