結果

問題 No.2427 Tree Distance Two
ユーザー ramdosramdos
提出日時 2023-08-17 21:02:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 421,384 KB
最終ジャッジ日時 2024-11-26 21:19:18
合計ジャッジ時間 32,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 39 ms
396,520 KB
testcase_02 AC 38 ms
57,216 KB
testcase_03 AC 1,019 ms
257,792 KB
testcase_04 AC 40 ms
56,832 KB
testcase_05 AC 992 ms
421,384 KB
testcase_06 AC 43 ms
57,600 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 428 ms
113,920 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 103 ms
77,312 KB
testcase_21 AC 102 ms
77,824 KB
testcase_22 AC 96 ms
76,928 KB
testcase_23 AC 91 ms
76,672 KB
testcase_24 AC 110 ms
77,312 KB
testcase_25 AC 282 ms
86,528 KB
testcase_26 AC 603 ms
100,992 KB
testcase_27 AC 417 ms
94,208 KB
testcase_28 AC 925 ms
113,408 KB
testcase_29 AC 810 ms
108,544 KB
testcase_30 AC 576 ms
100,736 KB
testcase_31 AC 385 ms
92,160 KB
testcase_32 AC 582 ms
100,480 KB
testcase_33 AC 495 ms
97,280 KB
testcase_34 AC 179 ms
419,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
V=[[] for i in range(N+1)]
for i in range(N-1):
    a,b=map(int,input().split())
    V[a].append(b)
    V[b].append(a)
for i in range(1,N+1):
    a=set()
    c=[V[x] for x in V[i]]
    for x in c:
        a=a.union(x)
    print(len(a)-1)
0