結果

問題 No.1424 Ultrapalindrome
ユーザー rodearodea
提出日時 2021-03-18 15:36:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 613 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-11-16 18:36:53
合計ジャッジ時間 5,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 166 ms
84,736 KB
testcase_10 AC 166 ms
84,480 KB
testcase_11 AC 131 ms
81,280 KB
testcase_12 AC 156 ms
84,096 KB
testcase_13 AC 93 ms
78,012 KB
testcase_14 AC 140 ms
81,824 KB
testcase_15 AC 41 ms
52,736 KB
testcase_16 AC 125 ms
80,768 KB
testcase_17 AC 137 ms
81,488 KB
testcase_18 AC 143 ms
80,896 KB
testcase_19 AC 185 ms
83,452 KB
testcase_20 AC 113 ms
78,048 KB
testcase_21 AC 176 ms
84,480 KB
testcase_22 AC 131 ms
79,744 KB
testcase_23 AC 78 ms
76,544 KB
testcase_24 AC 105 ms
77,824 KB
testcase_25 AC 103 ms
77,824 KB
testcase_26 AC 206 ms
84,096 KB
testcase_27 AC 194 ms
88,576 KB
testcase_28 AC 136 ms
85,000 KB
testcase_29 RE -
testcase_30 AC 154 ms
90,412 KB
testcase_31 AC 159 ms
90,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

leaf = set()
def dfs(cv, pv, G, d):
    is_leaf = True
    for nv in G[cv]:
        if nv == pv: continue
        dfs(nv, cv, G, d + 1)
        is_leaf = False
    
    if is_leaf: leaf.add(d)

n = int(input())
G = [[] for i in range(n)]
for i in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

deg3 = 0
cv = -1
for i in range(n):
    if 3 <= len(G[i]):
        deg3 += 1
        cv = i

if deg3 >= 2:
    print("No")
    exit()

if deg3 == 0:
    print("Yes")
    exit()

dfs(cv, -1, G, 0)

if len(leaf) == 1:
    print("Yes")
else:
    print("No")
0