結果

問題 No.1424 Ultrapalindrome
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-12 21:47:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 98,256 KB
最終ジャッジ日時 2024-10-14 12:06:05
合計ジャッジ時間 5,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 202 ms
88,520 KB
testcase_10 AC 195 ms
88,576 KB
testcase_11 AC 157 ms
84,096 KB
testcase_12 AC 182 ms
88,192 KB
testcase_13 AC 115 ms
78,540 KB
testcase_14 AC 173 ms
85,832 KB
testcase_15 AC 46 ms
54,528 KB
testcase_16 AC 146 ms
83,420 KB
testcase_17 AC 172 ms
85,760 KB
testcase_18 AC 138 ms
81,536 KB
testcase_19 AC 165 ms
84,224 KB
testcase_20 AC 103 ms
78,080 KB
testcase_21 AC 146 ms
82,560 KB
testcase_22 AC 127 ms
80,640 KB
testcase_23 AC 88 ms
77,824 KB
testcase_24 AC 102 ms
78,208 KB
testcase_25 AC 102 ms
77,952 KB
testcase_26 AC 181 ms
85,760 KB
testcase_27 WA -
testcase_28 AC 154 ms
89,344 KB
testcase_29 WA -
testcase_30 AC 166 ms
98,216 KB
testcase_31 AC 169 ms
98,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

cand = []
for i in range(n):
    if count[i] == 1:
        cand.append(i)

ind = cand[0]
dis = [10**10]*n
dis[ind] = 0

q = deque([ind])
while q:
    now = q.popleft()
    for nex in e[now]:
        if dis[nex] > dis[now]+1:
            dis[nex] = dis[now]+1
            q.append(nex)
num = dis[cand[1]]
for i in cand[2:]:
    if num != dis[i]:
        print("No")
        exit()
print("Yes")
0