結果

問題 No.1424 Ultrapalindrome
ユーザー 箱星箱星
提出日時 2020-12-30 18:41:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 810 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-10-14 16:04:45
合計ジャッジ時間 10,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,008 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 34 ms
11,136 KB
testcase_03 AC 34 ms
11,008 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 35 ms
11,136 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 35 ms
11,008 KB
testcase_09 AC 382 ms
24,704 KB
testcase_10 AC 383 ms
24,704 KB
testcase_11 AC 277 ms
20,608 KB
testcase_12 AC 362 ms
23,808 KB
testcase_13 AC 120 ms
14,464 KB
testcase_14 AC 297 ms
21,504 KB
testcase_15 AC 35 ms
11,008 KB
testcase_16 AC 244 ms
19,456 KB
testcase_17 AC 285 ms
21,120 KB
testcase_18 AC 363 ms
18,176 KB
testcase_19 AC 547 ms
20,736 KB
testcase_20 AC 155 ms
13,440 KB
testcase_21 AC 434 ms
18,688 KB
testcase_22 AC 292 ms
16,256 KB
testcase_23 AC 88 ms
12,544 KB
testcase_24 AC 141 ms
13,312 KB
testcase_25 AC 133 ms
12,928 KB
testcase_26 AC 657 ms
22,656 KB
testcase_27 AC 481 ms
28,032 KB
testcase_28 AC 404 ms
27,520 KB
testcase_29 AC 788 ms
27,776 KB
testcase_30 AC 800 ms
32,256 KB
testcase_31 AC 810 ms
35,328 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