結果

問題 No.806 木を道に
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 14:57:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 89,048 KB
最終ジャッジ日時 2024-07-05 03:08:58
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,196 KB
testcase_01 AC 35 ms
53,220 KB
testcase_02 AC 37 ms
52,432 KB
testcase_03 AC 37 ms
52,868 KB
testcase_04 AC 38 ms
53,424 KB
testcase_05 AC 39 ms
52,396 KB
testcase_06 AC 39 ms
52,928 KB
testcase_07 AC 38 ms
52,704 KB
testcase_08 AC 37 ms
52,964 KB
testcase_09 AC 36 ms
52,560 KB
testcase_10 AC 84 ms
77,968 KB
testcase_11 AC 85 ms
77,952 KB
testcase_12 AC 163 ms
85,216 KB
testcase_13 AC 130 ms
81,888 KB
testcase_14 AC 153 ms
84,736 KB
testcase_15 AC 160 ms
85,044 KB
testcase_16 AC 95 ms
78,284 KB
testcase_17 AC 147 ms
84,524 KB
testcase_18 AC 86 ms
77,116 KB
testcase_19 AC 90 ms
77,968 KB
testcase_20 AC 142 ms
84,244 KB
testcase_21 AC 109 ms
80,756 KB
testcase_22 AC 173 ms
87,468 KB
testcase_23 AC 172 ms
87,644 KB
testcase_24 AC 98 ms
81,212 KB
testcase_25 AC 117 ms
84,848 KB
testcase_26 AC 87 ms
79,592 KB
testcase_27 AC 134 ms
89,048 KB
testcase_28 AC 64 ms
69,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[[] for i in range(n+1)]

for i in range(n-1):
    a,b=map(int,input().split())
    g[a].append(b)
    g[b].append(a)
cnt=0
for i in range(1,n+1):
    if len(g[i]) == 1:
        cnt+=1

print(cnt-2)
0