結果

問題 No.806 木を道に
ユーザー flippergoflippergo
提出日時 2020-12-30 20:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 94,200 KB
最終ジャッジ日時 2024-10-08 00:52:22
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 39 ms
51,616 KB
testcase_02 AC 40 ms
52,120 KB
testcase_03 AC 39 ms
52,576 KB
testcase_04 AC 39 ms
52,832 KB
testcase_05 AC 41 ms
53,948 KB
testcase_06 AC 40 ms
53,084 KB
testcase_07 AC 40 ms
53,040 KB
testcase_08 AC 39 ms
52,936 KB
testcase_09 AC 39 ms
52,988 KB
testcase_10 AC 104 ms
79,244 KB
testcase_11 AC 101 ms
79,440 KB
testcase_12 AC 200 ms
91,964 KB
testcase_13 AC 161 ms
87,676 KB
testcase_14 AC 195 ms
90,120 KB
testcase_15 AC 206 ms
91,732 KB
testcase_16 AC 115 ms
81,292 KB
testcase_17 AC 193 ms
90,348 KB
testcase_18 AC 91 ms
77,040 KB
testcase_19 AC 109 ms
79,968 KB
testcase_20 AC 188 ms
90,224 KB
testcase_21 AC 137 ms
83,412 KB
testcase_22 AC 226 ms
94,200 KB
testcase_23 AC 224 ms
94,024 KB
testcase_24 AC 115 ms
86,068 KB
testcase_25 AC 141 ms
89,880 KB
testcase_26 AC 97 ms
80,628 KB
testcase_27 AC 160 ms
93,800 KB
testcase_28 AC 70 ms
70,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = {i:[] for i in range(1,N+1)}
for _ 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):
    a = len(G[i])
    if a>2:
        cnt += a-2
print(cnt)
0