結果

問題 No.2427 Tree Distance Two
ユーザー ryohei22ryohei22
提出日時 2023-08-18 21:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,932 KB
最終ジャッジ日時 2024-11-28 05:52:06
合計ジャッジ時間 13,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 36 ms
51,328 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 760 ms
116,352 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 766 ms
116,184 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 583 ms
126,932 KB
testcase_08 AC 659 ms
126,208 KB
testcase_09 AC 589 ms
124,288 KB
testcase_10 AC 586 ms
126,720 KB
testcase_11 AC 594 ms
125,424 KB
testcase_12 AC 663 ms
122,404 KB
testcase_13 AC 703 ms
119,012 KB
testcase_14 AC 343 ms
114,048 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 108 ms
77,184 KB
testcase_21 AC 110 ms
77,696 KB
testcase_22 AC 99 ms
76,544 KB
testcase_23 AC 94 ms
76,544 KB
testcase_24 AC 104 ms
77,056 KB
testcase_25 AC 230 ms
86,272 KB
testcase_26 AC 483 ms
100,224 KB
testcase_27 AC 389 ms
93,568 KB
testcase_28 AC 703 ms
113,152 KB
testcase_29 AC 610 ms
108,032 KB
testcase_30 AC 441 ms
99,968 KB
testcase_31 AC 303 ms
92,160 KB
testcase_32 AC 444 ms
99,328 KB
testcase_33 AC 383 ms
96,588 KB
testcase_34 AC 160 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
e = [[] for _ in range(N)]
for _ in range(N-1):
    u, v = map(lambda x: int(x) - 1, input().split())
    e[u].append(v)
    e[v].append(u)

for v in range(N):
    q = e[v]
    cnt = sum([len(e[i]) - 1 for i in q])
    print(cnt)
0