結果

問題 No.1719 Tree and Permutation
ユーザー nok0nok0
提出日時 2021-09-16 22:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 80,800 KB
最終ジャッジ日時 2024-09-23 03:48:55
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 454 ms
76,600 KB
testcase_02 AC 332 ms
76,552 KB
testcase_03 AC 341 ms
80,632 KB
testcase_04 AC 337 ms
80,800 KB
testcase_05 AC 338 ms
79,544 KB
testcase_06 AC 337 ms
80,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    deg = [0 for i in range(n + 1)]
    for i in range(n - 1):
        a, b = map(int, input().split())
        deg[a] += 1
        deg[b] += 1
    print("Yes" if deg.count(1) * 2 >= n else "No")
0