結果

問題 No.1424 Ultrapalindrome
ユーザー rlangevinrlangevin
提出日時 2023-03-01 23:13:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 839 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 108,964 KB
最終ジャッジ日時 2024-09-16 20:21:17
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 WA -
testcase_04 AC 47 ms
53,248 KB
testcase_05 WA -
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 WA -
testcase_09 AC 185 ms
97,152 KB
testcase_10 AC 179 ms
97,152 KB
testcase_11 AC 149 ms
92,288 KB
testcase_12 AC 177 ms
97,052 KB
testcase_13 AC 95 ms
81,024 KB
testcase_14 AC 159 ms
93,184 KB
testcase_15 AC 45 ms
54,016 KB
testcase_16 AC 147 ms
90,624 KB
testcase_17 AC 162 ms
91,776 KB
testcase_18 AC 136 ms
85,248 KB
testcase_19 AC 180 ms
92,416 KB
testcase_20 AC 98 ms
79,556 KB
testcase_21 AC 152 ms
90,240 KB
testcase_22 AC 118 ms
83,200 KB
testcase_23 AC 66 ms
71,168 KB
testcase_24 AC 93 ms
79,104 KB
testcase_25 AC 91 ms
78,976 KB
testcase_26 AC 194 ms
95,232 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 156 ms
108,964 KB
testcase_31 AC 144 ms
108,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import deque



N = int(readline())
G = [[] for i in range(N)]
D = [0] * N
for i in range(N - 1):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)
    D[A] += 1
    D[B] += 1
    
Q = deque()
dist = dict()
for i in range(N):
    dist[i] = -1
par = [-1] * N
for i in range(N):
    if D[i] == 1:
        Q.append(i)
        dist[i] = 0
        
while Q:
    u = Q.popleft()
    for v in G[u]:
        if v == par[u]:
            continue
        if dist[v] != -1:
            if -1 in dist:
                print("No")
                exit()
            if dist[v] == dist[u]:
                print("No")
                exit()
            continue
        dist[v] = dist[u] + 1
        par[v] = u
        Q.append(v)
print("Yes")
0