結果

問題 No.1719 Tree and Permutation
ユーザー zkouzkou
提出日時 2021-09-23 17:12:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 80,420 KB
最終ジャッジ日時 2024-09-23 03:49:19
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    deg = [0] * N
    for _ in range(N - 1):
        u, v = map(int, input().split())
        u -= 1; v -= 1
        deg[u] += 1
        deg[v] += 1
    print("Yes" if deg.count(1) * 2 >= N else "No")
    
0