結果

問題 No.1719 Tree and Permutation
ユーザー とりゐとりゐ
提出日時 2022-11-29 00:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,656 KB
最終ジャッジ日時 2024-10-06 03:53:22
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 160 ms
76,776 KB
testcase_02 AC 157 ms
76,508 KB
testcase_03 AC 167 ms
79,244 KB
testcase_04 AC 161 ms
79,656 KB
testcase_05 AC 163 ms
79,232 KB
testcase_06 AC 165 ms
79,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def solve():
  n=int(input())
  cnt=[0]*n
  for i in range(n-1):
    a,b=map(lambda x:int(x)-1,input().split())
    cnt[a]+=1
    cnt[b]+=1
  one=cnt.count(1)
  if n-one<=one:
    print('Yes')
  else:
    print('No')

for _ in range(int(input())):
  solve()
0