結果

問題 No.806 木を道に
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-22 21:41:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 985 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-09-19 03:12:03
合計ジャッジ時間 22,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,180 KB
testcase_01 AC 530 ms
43,924 KB
testcase_02 AC 527 ms
44,304 KB
testcase_03 AC 526 ms
44,304 KB
testcase_04 AC 537 ms
43,908 KB
testcase_05 AC 527 ms
44,052 KB
testcase_06 AC 522 ms
43,932 KB
testcase_07 AC 522 ms
43,928 KB
testcase_08 AC 524 ms
43,928 KB
testcase_09 AC 521 ms
43,924 KB
testcase_10 AC 617 ms
44,312 KB
testcase_11 AC 604 ms
43,960 KB
testcase_12 AC 898 ms
44,428 KB
testcase_13 AC 802 ms
44,056 KB
testcase_14 AC 885 ms
44,184 KB
testcase_15 AC 921 ms
44,304 KB
testcase_16 AC 671 ms
44,304 KB
testcase_17 AC 864 ms
44,048 KB
testcase_18 AC 571 ms
44,176 KB
testcase_19 AC 634 ms
44,432 KB
testcase_20 AC 853 ms
43,804 KB
testcase_21 AC 721 ms
44,304 KB
testcase_22 AC 985 ms
44,420 KB
testcase_23 AC 983 ms
43,928 KB
testcase_24 AC 762 ms
44,176 KB
testcase_25 AC 886 ms
44,312 KB
testcase_26 AC 656 ms
43,912 KB
testcase_27 AC 946 ms
43,780 KB
testcase_28 AC 545 ms
43,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np

n = int(input())
v = np.zeros((n))

for i in range(n-1):
    a, b = map(int, input().split(" "))
    v[a-1] += 1
    v[b-1] += 1
a = 0
for i in range(n):
    if v[i] > 2:
        a += (v[i]-2)
print(int(a))

0