結果

問題 No.1424 Ultrapalindrome
ユーザー rodearodea
提出日時 2021-03-18 15:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 609 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-11-16 18:36:26
合計ジャッジ時間 7,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
17,792 KB
testcase_01 AC 61 ms
17,792 KB
testcase_02 AC 61 ms
17,920 KB
testcase_03 AC 60 ms
17,664 KB
testcase_04 AC 59 ms
17,664 KB
testcase_05 AC 58 ms
17,664 KB
testcase_06 AC 60 ms
17,664 KB
testcase_07 AC 58 ms
17,792 KB
testcase_08 AC 57 ms
17,792 KB
testcase_09 AC 351 ms
25,216 KB
testcase_10 AC 357 ms
25,088 KB
testcase_11 AC 261 ms
22,912 KB
testcase_12 AC 333 ms
24,832 KB
testcase_13 AC 130 ms
19,584 KB
testcase_14 AC 279 ms
23,552 KB
testcase_15 AC 59 ms
17,920 KB
testcase_16 AC 268 ms
22,400 KB
testcase_17 AC 292 ms
23,424 KB
testcase_18 AC 213 ms
21,376 KB
testcase_19 AC 290 ms
23,168 KB
testcase_20 AC 111 ms
19,200 KB
testcase_21 RE -
testcase_22 AC 174 ms
20,480 KB
testcase_23 AC 81 ms
18,304 KB
testcase_24 AC 108 ms
19,328 KB
testcase_25 AC 104 ms
18,816 KB
testcase_26 AC 332 ms
24,320 KB
testcase_27 AC 448 ms
27,520 KB
testcase_28 AC 392 ms
27,264 KB
testcase_29 RE -
testcase_30 AC 403 ms
24,960 KB
testcase_31 AC 416 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

G = [[] for i in range(100010)]
leaf = set()
def dfs(cv, pv, d):
    is_leaf = True
    for nv in G[cv]:
        if nv == pv: continue
        dfs(nv, cv, d + 1)
        is_leaf = False
    
    if is_leaf: leaf.add(d)

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

deg3 = 0
cv = -1
for i in range(n):
    if 3 <= len(G[i]):
        deg3 += 1
        cv = i

if deg3 >= 2:
    print("No")
    exit()

if deg3 == 0:
    print("Yes")
    exit()

dfs(cv, -1, 0)

if len(leaf) == 1:
    print("Yes")
else:
    print("No")
0