結果

問題 No.806 木を道に
ユーザー nohakai3nohakai3
提出日時 2022-11-05 11:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,520 KB
最終ジャッジ日時 2024-07-19 06:17:50
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 99 ms
78,208 KB
testcase_11 AC 96 ms
77,952 KB
testcase_12 AC 156 ms
84,992 KB
testcase_13 AC 127 ms
82,304 KB
testcase_14 AC 146 ms
84,608 KB
testcase_15 AC 154 ms
85,504 KB
testcase_16 AC 101 ms
78,464 KB
testcase_17 AC 145 ms
84,224 KB
testcase_18 AC 86 ms
76,928 KB
testcase_19 AC 96 ms
78,080 KB
testcase_20 AC 142 ms
84,352 KB
testcase_21 AC 113 ms
80,640 KB
testcase_22 AC 190 ms
87,552 KB
testcase_23 AC 174 ms
87,168 KB
testcase_24 AC 107 ms
81,408 KB
testcase_25 AC 136 ms
84,352 KB
testcase_26 AC 93 ms
79,488 KB
testcase_27 AC 140 ms
88,520 KB
testcase_28 AC 67 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
G=[[] for i in range(n)]
for i in range(n-1):
    a,b=map(int,input().split())
    G[a-1].append(b-1)
    G[b-1].append(a-1)

ans=0
for i in range(n):
    if len(G[i])>=3:
        ans+=len(G[i])-2
    
print(ans)
0