結果

問題 No.1424 Ultrapalindrome
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-12 23:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,256 KB
最終ジャッジ日時 2024-10-14 16:27:10
合計ジャッジ時間 3,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 110 ms
84,972 KB
testcase_10 AC 108 ms
85,312 KB
testcase_11 AC 94 ms
82,816 KB
testcase_12 AC 107 ms
85,228 KB
testcase_13 AC 66 ms
72,448 KB
testcase_14 AC 104 ms
83,188 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 92 ms
81,932 KB
testcase_17 AC 95 ms
83,020 KB
testcase_18 AC 107 ms
81,892 KB
testcase_19 AC 118 ms
83,608 KB
testcase_20 AC 80 ms
74,752 KB
testcase_21 AC 117 ms
82,140 KB
testcase_22 AC 96 ms
80,384 KB
testcase_23 AC 65 ms
68,480 KB
testcase_24 AC 75 ms
72,576 KB
testcase_25 AC 73 ms
72,448 KB
testcase_26 AC 129 ms
85,004 KB
testcase_27 AC 121 ms
88,616 KB
testcase_28 AC 85 ms
84,608 KB
testcase_29 AC 106 ms
89,408 KB
testcase_30 AC 122 ms
101,956 KB
testcase_31 AC 120 ms
103,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

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

G = []
L = []
for i in range(n):
    if len(g[i]) >= 3:
        G.append(i)
    if len(g[i]) == 1:
        L.append(i)

if len(G) >= 2:
    print('No')
    exit()

if not G:
    print('Yes')
    exit()

s = G[0]
from collections import deque
q = deque([])
q.append(s)
dist = [-1]*n
dist[s] = 0
while q:
    v = q.popleft()
    for u in g[v]:
        if dist[u] == -1:
            dist[u] = dist[v]+1
            q.append(u)
D = set()
for l in L:
    D.add(dist[l])
#print(D)
if len(D) == 1:
    print('Yes')
else:
    print('No')
0