結果

問題 No.806 木を道に
ユーザー shoooooshooooo
提出日時 2019-11-30 21:17:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,732 KB
最終ジャッジ日時 2024-11-21 03:34:57
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 125 ms
16,100 KB
testcase_11 AC 113 ms
14,328 KB
testcase_12 AC 444 ms
26,700 KB
testcase_13 AC 313 ms
22,864 KB
testcase_14 AC 408 ms
26,052 KB
testcase_15 AC 441 ms
26,824 KB
testcase_16 AC 165 ms
16,852 KB
testcase_17 AC 368 ms
25,112 KB
testcase_18 AC 63 ms
12,416 KB
testcase_19 AC 128 ms
15,968 KB
testcase_20 AC 385 ms
24,996 KB
testcase_21 AC 221 ms
18,664 KB
testcase_22 AC 509 ms
31,648 KB
testcase_23 AC 530 ms
31,652 KB
testcase_24 AC 253 ms
21,680 KB
testcase_25 AC 362 ms
25,780 KB
testcase_26 AC 153 ms
16,904 KB
testcase_27 AC 439 ms
32,732 KB
testcase_28 AC 39 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
E=defaultdict(list)
for i in range(N-1):
  a,b=map(int,input().split())
  E[a].append(b)
  E[b].append(a)
ans=0
for i in range(1,N+1):
  ans+=max(len(E[i])-2,0)
print(ans)
0