結果

問題 No.2427 Tree Distance Two
ユーザー miya145592miya145592
提出日時 2023-08-18 22:41:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 124,920 KB
最終ジャッジ日時 2024-05-06 05:03:27
合計ジャッジ時間 12,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 665 ms
112,180 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 633 ms
112,336 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 501 ms
124,776 KB
testcase_08 AC 573 ms
123,392 KB
testcase_09 AC 536 ms
123,132 KB
testcase_10 AC 539 ms
124,920 KB
testcase_11 AC 554 ms
123,008 KB
testcase_12 AC 591 ms
120,384 KB
testcase_13 AC 597 ms
117,632 KB
testcase_14 AC 295 ms
109,844 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 38 ms
52,736 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 38 ms
52,864 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 85 ms
77,232 KB
testcase_21 AC 91 ms
77,528 KB
testcase_22 AC 75 ms
74,612 KB
testcase_23 AC 73 ms
74,112 KB
testcase_24 AC 89 ms
77,340 KB
testcase_25 AC 179 ms
85,504 KB
testcase_26 AC 395 ms
98,304 KB
testcase_27 AC 281 ms
92,220 KB
testcase_28 AC 591 ms
108,928 KB
testcase_29 AC 528 ms
105,460 KB
testcase_30 AC 365 ms
97,664 KB
testcase_31 AC 246 ms
90,164 KB
testcase_32 AC 377 ms
97,664 KB
testcase_33 AC 329 ms
94,720 KB
testcase_34 AC 142 ms
82,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ 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):
    ans = 0
    for j in G[i]:
        ans+= len(G[j])-1
    print(ans)
0