結果

問題 No.2427 Tree Distance Two
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-24 21:08:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 123,392 KB
最終ジャッジ日時 2024-06-02 10:29:54
合計ジャッジ時間 12,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,168 KB
testcase_01 AC 37 ms
55,936 KB
testcase_02 AC 37 ms
55,040 KB
testcase_03 AC 554 ms
115,280 KB
testcase_04 AC 38 ms
55,936 KB
testcase_05 AC 567 ms
115,584 KB
testcase_06 AC 38 ms
55,936 KB
testcase_07 AC 398 ms
121,884 KB
testcase_08 AC 487 ms
122,852 KB
testcase_09 AC 424 ms
121,344 KB
testcase_10 AC 411 ms
123,392 KB
testcase_11 AC 434 ms
120,548 KB
testcase_12 AC 477 ms
118,840 KB
testcase_13 AC 487 ms
117,680 KB
testcase_14 AC 225 ms
113,664 KB
testcase_15 AC 37 ms
55,040 KB
testcase_16 AC 38 ms
56,064 KB
testcase_17 AC 38 ms
55,296 KB
testcase_18 AC 38 ms
56,064 KB
testcase_19 AC 36 ms
55,680 KB
testcase_20 AC 75 ms
78,436 KB
testcase_21 AC 77 ms
78,208 KB
testcase_22 AC 70 ms
77,952 KB
testcase_23 AC 63 ms
75,520 KB
testcase_24 AC 74 ms
78,148 KB
testcase_25 AC 154 ms
87,220 KB
testcase_26 AC 314 ms
100,556 KB
testcase_27 AC 219 ms
94,408 KB
testcase_28 AC 504 ms
112,432 KB
testcase_29 AC 421 ms
108,160 KB
testcase_30 AC 306 ms
99,968 KB
testcase_31 AC 202 ms
91,776 KB
testcase_32 AC 313 ms
99,968 KB
testcase_33 AC 264 ms
97,016 KB
testcase_34 AC 116 ms
83,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
e = [[] for _ in range(N)]
for _ in range(N-1):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    e[u].append(v)
    e[v].append(u)
    
    
for i in range(N):
    
    x = sum(len(e[j]) for j in e[i])
    print(x-len(e[i]))
0