結果

問題 No.1424 Ultrapalindrome
ユーザー rodearodea
提出日時 2021-03-17 18:51:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-11-15 11:36:06
合計ジャッジ時間 9,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 439 ms
24,320 KB
testcase_10 AC 436 ms
24,320 KB
testcase_11 AC 314 ms
20,352 KB
testcase_12 AC 421 ms
23,424 KB
testcase_13 AC 134 ms
14,464 KB
testcase_14 AC 364 ms
21,376 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 272 ms
18,944 KB
testcase_17 AC 321 ms
20,608 KB
testcase_18 AC 219 ms
17,408 KB
testcase_19 AC 332 ms
20,736 KB
testcase_20 AC 99 ms
13,184 KB
testcase_21 RE -
testcase_22 AC 190 ms
16,000 KB
testcase_23 AC 62 ms
11,904 KB
testcase_24 RE -
testcase_25 AC 91 ms
12,800 KB
testcase_26 AC 390 ms
22,656 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 461 ms
25,600 KB
testcase_31 AC 461 ms
28,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

leaf = set()

def dfs(cv, pv, G, depth):
    is_leaf = True
    for nv in G[cv]:
        if nv == pv:
            continue
        dfs(nv, cv, G, depth + 1)
        is_leaf = False

    if is_leaf:
        leaf.add(depth)

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

root = -1
for i in range(n):
    if deg[i] == 1:
        root = i
        break

dfs(root, -1, G, 0)

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