結果

問題 No.1928 Make a Binary Tree
ユーザー 👑 rin204rin204
提出日時 2022-05-06 21:28:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 270,976 KB
最終ジャッジ日時 2024-07-05 22:38:14
合計ジャッジ時間 21,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 537 ms
195,092 KB
testcase_37 WA -
testcase_38 AC 37 ms
52,480 KB
testcase_39 AC 632 ms
190,684 KB
testcase_40 AC 627 ms
190,260 KB
testcase_41 AC 629 ms
190,464 KB
testcase_42 AC 631 ms
190,860 KB
testcase_43 AC 623 ms
190,592 KB
testcase_44 AC 650 ms
190,696 KB
testcase_45 AC 615 ms
190,464 KB
testcase_46 AC 634 ms
190,452 KB
testcase_47 AC 637 ms
190,592 KB
testcase_48 AC 634 ms
190,592 KB
testcase_49 AC 611 ms
270,976 KB
testcase_50 AC 559 ms
98,816 KB
testcase_51 AC 549 ms
98,688 KB
testcase_52 AC 541 ms
98,432 KB
testcase_53 AC 545 ms
98,440 KB
testcase_54 AC 537 ms
98,560 KB
testcase_55 AC 622 ms
197,476 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 426 ms
111,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

def dfs(pos, bpos):
    tmp = -2
    for npos in edges[pos]:
        if npos == bpos:
            continue
        else:
            tmp += dfs(npos, pos) + 1
    
    return max(0, tmp)

ans = dfs(0, -1)
print(n - ans)
0