結果

問題 No.806 木を道に
ユーザー wgrapewgrape
提出日時 2023-11-01 17:51:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,780 KB
最終ジャッジ日時 2024-09-25 18:00:58
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 43 ms
52,608 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 109 ms
78,080 KB
testcase_11 AC 106 ms
77,824 KB
testcase_12 AC 177 ms
85,120 KB
testcase_13 AC 150 ms
82,176 KB
testcase_14 AC 174 ms
84,864 KB
testcase_15 AC 186 ms
85,504 KB
testcase_16 AC 116 ms
78,464 KB
testcase_17 AC 169 ms
84,224 KB
testcase_18 AC 99 ms
77,568 KB
testcase_19 AC 107 ms
77,952 KB
testcase_20 AC 168 ms
84,864 KB
testcase_21 AC 133 ms
81,024 KB
testcase_22 AC 202 ms
87,296 KB
testcase_23 AC 206 ms
87,680 KB
testcase_24 AC 118 ms
81,152 KB
testcase_25 AC 137 ms
84,480 KB
testcase_26 AC 103 ms
79,232 KB
testcase_27 AC 155 ms
88,780 KB
testcase_28 AC 77 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for i in range(N)]
for _ 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):
    ans += max(0, len(G[i]) - 2)
    
print(ans)
0