結果

問題 No.2427 Tree Distance Two
ユーザー loop0919loop0919
提出日時 2023-08-18 22:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 198,272 KB
最終ジャッジ日時 2024-11-28 07:43:03
合計ジャッジ時間 14,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 815 ms
161,024 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 784 ms
161,024 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 638 ms
196,040 KB
testcase_08 AC 734 ms
191,872 KB
testcase_09 AC 702 ms
192,512 KB
testcase_10 AC 687 ms
198,272 KB
testcase_11 AC 701 ms
192,044 KB
testcase_12 AC 744 ms
185,708 KB
testcase_13 AC 781 ms
177,612 KB
testcase_14 AC 355 ms
160,896 KB
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 35 ms
51,584 KB
testcase_18 AC 40 ms
52,352 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 97 ms
77,824 KB
testcase_21 AC 110 ms
78,080 KB
testcase_22 AC 93 ms
77,184 KB
testcase_23 AC 87 ms
76,928 KB
testcase_24 AC 99 ms
77,696 KB
testcase_25 AC 224 ms
98,432 KB
testcase_26 AC 488 ms
129,280 KB
testcase_27 AC 342 ms
113,920 KB
testcase_28 AC 773 ms
155,008 KB
testcase_29 AC 706 ms
145,408 KB
testcase_30 AC 491 ms
128,000 KB
testcase_31 AC 335 ms
109,312 KB
testcase_32 AC 470 ms
127,232 KB
testcase_33 AC 413 ms
120,832 KB
testcase_34 AC 186 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

tree = [set() for _ in range(N)]

for i in range(N-1):
    a, b = map(lambda x: int(x) - 1, input().split())
    tree[a].add(b)
    tree[b].add(a)

for i in range(N):
    sum = 0
    for next in tree[i]:
        sum += len(tree[next]) - 1
    print(sum)
0