結果

問題 No.2427 Tree Distance Two
ユーザー hato336hato336
提出日時 2023-08-18 21:16:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,232 KB
最終ジャッジ日時 2024-11-28 05:17:32
合計ジャッジ時間 11,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 570 ms
114,816 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 581 ms
114,304 KB
testcase_06 AC 39 ms
51,072 KB
testcase_07 AC 502 ms
126,948 KB
testcase_08 AC 529 ms
126,464 KB
testcase_09 AC 496 ms
125,824 KB
testcase_10 AC 515 ms
127,232 KB
testcase_11 AC 532 ms
125,104 KB
testcase_12 AC 538 ms
122,188 KB
testcase_13 AC 571 ms
119,808 KB
testcase_14 AC 309 ms
112,896 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 36 ms
51,584 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 92 ms
77,312 KB
testcase_21 AC 97 ms
77,056 KB
testcase_22 AC 84 ms
74,880 KB
testcase_23 AC 86 ms
74,624 KB
testcase_24 AC 96 ms
77,056 KB
testcase_25 AC 174 ms
85,888 KB
testcase_26 AC 361 ms
99,840 KB
testcase_27 AC 269 ms
92,544 KB
testcase_28 AC 554 ms
110,976 KB
testcase_29 AC 466 ms
106,880 KB
testcase_30 AC 359 ms
98,432 KB
testcase_31 AC 240 ms
90,496 KB
testcase_32 AC 343 ms
98,432 KB
testcase_33 AC 298 ms
96,384 KB
testcase_34 AC 143 ms
81,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = [0 for i in range(n)]
edge = [[] for i in range(n)]
for i in range(n-1):
    u,v = map(int,input().split())
    u-=1
    v-=1
    cnt[u] += 1
    cnt[v] += 1
    edge[u].append(v)
    edge[v].append(u)
for i in range(n):
    ans = 0
    for j in edge[i]:
        ans += cnt[j] - 1
    print(ans)
0