結果

問題 No.1424 Ultrapalindrome
ユーザー 箱星箱星
提出日時 2020-12-30 18:41:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 99,748 KB
最終ジャッジ日時 2024-10-14 16:04:34
合計ジャッジ時間 6,443 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,004 KB
testcase_01 AC 64 ms
67,248 KB
testcase_02 AC 64 ms
68,164 KB
testcase_03 AC 66 ms
66,908 KB
testcase_04 AC 64 ms
68,204 KB
testcase_05 AC 64 ms
66,680 KB
testcase_06 AC 65 ms
66,960 KB
testcase_07 AC 66 ms
67,104 KB
testcase_08 AC 65 ms
68,224 KB
testcase_09 AC 189 ms
86,608 KB
testcase_10 AC 190 ms
86,792 KB
testcase_11 AC 167 ms
85,180 KB
testcase_12 AC 188 ms
86,736 KB
testcase_13 AC 119 ms
79,872 KB
testcase_14 AC 174 ms
85,504 KB
testcase_15 AC 68 ms
68,796 KB
testcase_16 AC 154 ms
83,120 KB
testcase_17 AC 167 ms
85,376 KB
testcase_18 AC 230 ms
85,016 KB
testcase_19 AC 274 ms
86,292 KB
testcase_20 AC 161 ms
81,316 KB
testcase_21 AC 228 ms
84,264 KB
testcase_22 AC 201 ms
82,848 KB
testcase_23 AC 128 ms
79,792 KB
testcase_24 AC 153 ms
80,584 KB
testcase_25 AC 148 ms
81,028 KB
testcase_26 AC 295 ms
88,116 KB
testcase_27 AC 220 ms
90,572 KB
testcase_28 AC 164 ms
88,900 KB
testcase_29 AC 240 ms
89,972 KB
testcase_30 AC 270 ms
99,748 KB
testcase_31 AC 265 ms
98,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue

n = int(input())
adj = [[] for _ in range(n + 1)]
for i in range(n - 1):
    a, b = map(int, input().split())
    adj[a].append(b)
    adj[b].append(a)
lst = []
for i in range(1, n + 1):
    if len(adj[i]) >= 3:
        lst.append(i)
if len(lst) >= 2:
    print("No")
elif len(lst) == 0:
    print("Yes")
else:
    lens = set([])
    que = queue.Queue()
    que.put((lst[0], -1, 0))
    while not que.empty():
        v, p, d = que.get()
        isleaf = True
        for w in adj[v]:
            if w != p:
                isleaf = False
                que.put((w, v, d + 1))
        if isleaf:
            lens.add(d)
    if len(lens) == 1:
        print("Yes")
    else:
        print("No")
0