結果

問題 No.2427 Tree Distance Two
ユーザー tassei903tassei903
提出日時 2023-08-15 04:47:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 124,644 KB
最終ジャッジ日時 2024-11-23 08:47:29
合計ジャッジ時間 16,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 815 ms
112,128 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 791 ms
112,256 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 568 ms
124,644 KB
testcase_08 AC 656 ms
123,648 KB
testcase_09 AC 610 ms
122,752 KB
testcase_10 AC 623 ms
124,544 KB
testcase_11 AC 642 ms
122,748 KB
testcase_12 AC 690 ms
120,500 KB
testcase_13 AC 742 ms
117,760 KB
testcase_14 AC 335 ms
109,568 KB
testcase_15 AC 43 ms
51,840 KB
testcase_16 AC 44 ms
52,736 KB
testcase_17 AC 42 ms
51,712 KB
testcase_18 AC 43 ms
52,224 KB
testcase_19 AC 42 ms
51,840 KB
testcase_20 AC 105 ms
76,928 KB
testcase_21 AC 112 ms
77,696 KB
testcase_22 AC 92 ms
74,624 KB
testcase_23 AC 92 ms
73,984 KB
testcase_24 AC 109 ms
77,184 KB
testcase_25 AC 236 ms
85,504 KB
testcase_26 AC 505 ms
98,304 KB
testcase_27 AC 355 ms
92,288 KB
testcase_28 AC 746 ms
108,544 KB
testcase_29 AC 656 ms
105,216 KB
testcase_30 AC 493 ms
97,664 KB
testcase_31 AC 328 ms
90,112 KB
testcase_32 AC 491 ms
97,536 KB
testcase_33 AC 431 ms
94,848 KB
testcase_34 AC 175 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for i in range(n)]
for _ in range(n-1):
    u, v = map(int,input().split())
    u-=1
    v-=1
    g[u].append(v)
    g[v].append(u)

for i in range(n):
    r = 0
    for j in g[i]:
        r += len(g[j]) - 1
    print(r)
0