結果

問題 No.1424 Ultrapalindrome
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 15:10:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-11 08:17:16
合計ジャッジ時間 7,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 332 ms
24,192 KB
testcase_10 AC 331 ms
24,320 KB
testcase_11 AC 240 ms
20,224 KB
testcase_12 AC 307 ms
23,552 KB
testcase_13 AC 101 ms
14,208 KB
testcase_14 AC 252 ms
21,376 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 201 ms
19,072 KB
testcase_17 AC 245 ms
20,864 KB
testcase_18 AC 195 ms
18,560 KB
testcase_19 AC 315 ms
21,504 KB
testcase_20 AC 91 ms
13,568 KB
testcase_21 AC 248 ms
19,200 KB
testcase_22 AC 159 ms
16,000 KB
testcase_23 AC 49 ms
11,904 KB
testcase_24 AC 80 ms
13,184 KB
testcase_25 AC 76 ms
12,800 KB
testcase_26 AC 378 ms
23,424 KB
testcase_27 AC 418 ms
28,416 KB
testcase_28 AC 382 ms
28,160 KB
testcase_29 WA -
testcase_30 AC 382 ms
26,624 KB
testcase_31 AC 403 ms
29,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
g=[[] for _ in range(n)]
in_num=[0]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
cnt_3=0
for i in range(n):
    if len(g[i])>=3:
        cnt_3+=1
if cnt_3>=2:
    print('No')
elif cnt_3==0:
    print('Yes')
else:
    q=deque()
    for i in range(n):
        if len(g[i])==1:
            q.append((i,0))
            break
    D=set()
    visit=[False]*n
    while q:
        now,d=q.popleft()
        visit[now]=True
        for to in g[now]:
            if visit[to]:
                continue
            if len(g[to])==1:
                D.add(d+1)
                continue
            q.append((to,d+1))
    if len(D)==1:
        print('Yes')
    else:
        print('No')
0