結果

問題 No.1424 Ultrapalindrome
ユーザー kuro_Bkuro_B
提出日時 2023-04-06 13:58:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,739 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,584 KB
最終ジャッジ日時 2024-10-02 13:16:42
合計ジャッジ時間 6,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,392 KB
testcase_01 AC 36 ms
11,392 KB
testcase_02 AC 35 ms
11,392 KB
testcase_03 AC 36 ms
11,520 KB
testcase_04 AC 37 ms
11,520 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
11,520 KB
testcase_08 AC 36 ms
11,392 KB
testcase_09 AC 319 ms
25,088 KB
testcase_10 AC 323 ms
25,216 KB
testcase_11 AC 217 ms
21,248 KB
testcase_12 AC 292 ms
24,192 KB
testcase_13 AC 98 ms
15,104 KB
testcase_14 AC 245 ms
22,016 KB
testcase_15 AC 36 ms
11,520 KB
testcase_16 AC 190 ms
19,840 KB
testcase_17 AC 227 ms
21,504 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
12,544 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 385 ms
29,184 KB
testcase_28 AC 314 ms
51,584 KB
testcase_29 AC 300 ms
51,584 KB
testcase_30 WA -
testcase_31 AC 281 ms
29,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

###スニペット始まり###
import sys, re
from copy import copy, deepcopy
from math import ceil, floor, sqrt,factorial, gcd, pi, degrees, radians, sin, asin, cos, acos, tan, atan2
from collections import Counter, deque, defaultdict
from heapq import heapify, heappop, heappush
from itertools import permutations, accumulate, product, combinations, combinations_with_replacement
from bisect import bisect, bisect_left, bisect_right
from functools import reduce, lru_cache
from string import ascii_uppercase, ascii_lowercase
from decimal import Decimal, ROUND_HALF_UP #四捨五入用

def input(): return sys.stdin.readline().rstrip('\n')
#easy-testのpypyでは再帰数を下げる。
if __file__=='prog.py':
    sys.setrecursionlimit(10**5)
else:
    sys.setrecursionlimit(10**6)

def lcm(a, b): return a * b // gcd(a, b)

#3つ以上の最大公約数/最小公倍数
def gcd_v2(l: list): return reduce(gcd, l)
def lcm_v2(l: list): return reduce(lcm, l)

#nPk
def nPk(n, k): return factorial(n) // factorial(n - k)

#逆元
def modinv(a, mod=10**9+7): return pow(a, mod-2, mod)
INF = float('inf')
MOD = 10 ** 9 + 7
###スニペット終わり###
N=int(input())
graph = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(int, input().split())
    graph[a-1].append(b-1)
    graph[b-1].append(a-1)  # 有向グラフなら消す

root_cnt=0
depths=set()
visited=[False]*N
def dfs(s, depth):
    global root_cnt

    visited[s]=True
    flag=True
    for v in graph[s]:
        if not visited[v]:
            flag=False
            dfs(v, depth+1)
    if flag:
        root_cnt+=1
        depths.add(depth)
dfs(0,0)

if root_cnt==1:
    print('Yes')
elif len(depths)==1 and 2 in depths:
    print('Yes')
else:
    print('No')

0