結果

問題 No.1424 Ultrapalindrome
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-12 22:33:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 96,836 KB
最終ジャッジ日時 2024-10-14 13:07:15
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,960 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
53,632 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 122 ms
82,248 KB
testcase_12 AC 141 ms
83,328 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 119 ms
81,728 KB
testcase_17 AC 127 ms
82,220 KB
testcase_18 AC 147 ms
80,808 KB
testcase_19 AC 120 ms
82,780 KB
testcase_20 AC 73 ms
72,832 KB
testcase_21 AC 107 ms
81,840 KB
testcase_22 AC 96 ms
80,308 KB
testcase_23 AC 72 ms
67,072 KB
testcase_24 AC 75 ms
72,832 KB
testcase_25 AC 72 ms
72,192 KB
testcase_26 AC 129 ms
83,476 KB
testcase_27 WA -
testcase_28 AC 87 ms
84,572 KB
testcase_29 WA -
testcase_30 AC 885 ms
93,316 KB
testcase_31 AC 914 ms
96,836 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)

if n == 2:
    print('Yes')
    exit()

from collections import deque
q = deque([])
for v in range(n):
    if len(g[v]) == 1:
        q.append(v)

if len(q) == 2:
    print('Yes')
    exit()

while n > 2:
    l = len(q)
    n -= l
    for i in range(l):
        v = q.popleft()
        for u in g[v]:
            g[u].remove(v)
            if len(g[u]) == 1:
                q.append(u)
#print(list(q))
if len(q) == 1:
    print('Yes')
else:
    print('No')
0