結果

問題 No.806 木を道に
ユーザー convexineqconvexineq
提出日時 2021-04-06 08:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-06-10 19:30:26
合計ジャッジ時間 3,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,584 KB
testcase_01 AC 30 ms
51,584 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 31 ms
52,096 KB
testcase_04 AC 31 ms
51,616 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 35 ms
51,900 KB
testcase_08 AC 34 ms
51,584 KB
testcase_09 AC 32 ms
51,712 KB
testcase_10 AC 65 ms
76,032 KB
testcase_11 AC 65 ms
76,288 KB
testcase_12 AC 102 ms
76,840 KB
testcase_13 AC 91 ms
76,756 KB
testcase_14 AC 104 ms
76,800 KB
testcase_15 AC 99 ms
77,104 KB
testcase_16 AC 80 ms
76,220 KB
testcase_17 AC 88 ms
76,544 KB
testcase_18 AC 67 ms
71,552 KB
testcase_19 AC 79 ms
76,160 KB
testcase_20 AC 95 ms
76,672 KB
testcase_21 AC 86 ms
76,288 KB
testcase_22 AC 107 ms
77,092 KB
testcase_23 AC 115 ms
76,940 KB
testcase_24 AC 80 ms
76,400 KB
testcase_25 AC 101 ms
76,600 KB
testcase_26 AC 71 ms
76,556 KB
testcase_27 AC 104 ms
77,628 KB
testcase_28 AC 53 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
deg = [0]*n
for _ in range(n-1):
    a,b = map(int,input().split())
    deg[a-1] += 1
    deg[b-1] += 1
print(deg.count(1) - 2)
0