結果

問題 No.1424 Ultrapalindrome
ユーザー KudeKude
提出日時 2021-03-12 21:42:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-10-14 11:59:47
合計ジャッジ時間 7,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 374 ms
24,192 KB
testcase_10 AC 386 ms
24,192 KB
testcase_11 AC 268 ms
20,224 KB
testcase_12 AC 353 ms
23,424 KB
testcase_13 AC 115 ms
14,336 KB
testcase_14 AC 294 ms
21,248 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 225 ms
19,200 KB
testcase_17 AC 269 ms
20,736 KB
testcase_18 AC 225 ms
17,664 KB
testcase_19 AC 334 ms
21,248 KB
testcase_20 AC 100 ms
13,312 KB
testcase_21 RE -
testcase_22 AC 178 ms
16,128 KB
testcase_23 AC 61 ms
12,032 KB
testcase_24 AC 96 ms
13,440 KB
testcase_25 AC 90 ms
12,800 KB
testcase_26 AC 394 ms
23,296 KB
testcase_27 AC 486 ms
28,416 KB
testcase_28 AC 413 ms
28,032 KB
testcase_29 RE -
testcase_30 AC 481 ms
26,368 KB
testcase_31 AC 490 ms
29,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
deg = [0] * n
to = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    to[a].append(b)
    to[b].append(a)
    deg[a] += 1
    deg[b] += 1
imx = max(range(n), key=lambda i: deg[i])
if deg[imx] == 2:
    print('Yes')
    exit()
if any(i != imx and deg[i] >= 3 for i in range(n)):
    print('No')
    exit()
depth = [0] * n
def dfs(u, p=-1):
    if p >= 0:
        depth[u] = depth[p] + 1
    for v in to[u]:
        if v == p:
            continue
        dfs(v, u)
dfs(imx)
d = -1
ok = True
for i in range(n):
    if deg[i] == 1:
        if d == -1:
            d = depth[i]
        elif d != depth[i]:
            ok = False
            break
ans = 'Yes' if ok else 'No'
print(ans)
0