結果

問題 No.1582 Vertexes vs Edges
ユーザー convexineqconvexineq
提出日時 2021-07-03 06:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 97,352 KB
最終ジャッジ日時 2024-06-30 00:06:29
合計ジャッジ時間 6,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 73 ms
73,316 KB
testcase_05 AC 145 ms
93,096 KB
testcase_06 AC 75 ms
74,068 KB
testcase_07 AC 85 ms
77,252 KB
testcase_08 AC 116 ms
83,956 KB
testcase_09 AC 145 ms
92,416 KB
testcase_10 AC 120 ms
85,828 KB
testcase_11 AC 78 ms
76,920 KB
testcase_12 AC 108 ms
81,736 KB
testcase_13 AC 132 ms
86,272 KB
testcase_14 AC 136 ms
86,172 KB
testcase_15 AC 168 ms
91,924 KB
testcase_16 AC 120 ms
83,168 KB
testcase_17 AC 132 ms
86,144 KB
testcase_18 AC 174 ms
92,112 KB
testcase_19 AC 126 ms
86,348 KB
testcase_20 AC 136 ms
85,424 KB
testcase_21 AC 121 ms
85,016 KB
testcase_22 AC 162 ms
92,740 KB
testcase_23 AC 105 ms
79,996 KB
testcase_24 AC 85 ms
77,440 KB
testcase_25 AC 123 ms
84,352 KB
testcase_26 AC 110 ms
80,208 KB
testcase_27 AC 177 ms
91,904 KB
testcase_28 AC 96 ms
79,044 KB
testcase_29 AC 162 ms
88,896 KB
testcase_30 AC 118 ms
84,392 KB
testcase_31 AC 170 ms
88,156 KB
testcase_32 AC 106 ms
79,996 KB
testcase_33 AC 236 ms
97,352 KB
testcase_34 AC 234 ms
97,152 KB
testcase_35 AC 233 ms
96,864 KB
testcase_36 AC 39 ms
51,840 KB
testcase_37 AC 38 ms
52,096 KB
testcase_38 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
 
order = []
st = [0]
parent = [-1]*n
while st:
    v = st.pop()
    order.append(v)
    for c in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v

d = [0]*n
for i in order[1:][::-1]:
    if d[i]==0: d[parent[i]] = 1
print(d.count(1))
0