結果

問題 No.2427 Tree Distance Two
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:16:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 126,276 KB
最終ジャッジ日時 2024-06-01 20:16:39
合計ジャッジ時間 14,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,236 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,416 KB
testcase_03 AC 784 ms
114,904 KB
testcase_04 AC 37 ms
52,348 KB
testcase_05 AC 779 ms
114,840 KB
testcase_06 AC 37 ms
52,824 KB
testcase_07 AC 581 ms
124,748 KB
testcase_08 AC 641 ms
125,784 KB
testcase_09 AC 585 ms
124,044 KB
testcase_10 AC 648 ms
126,276 KB
testcase_11 AC 653 ms
123,640 KB
testcase_12 AC 685 ms
121,660 KB
testcase_13 AC 753 ms
118,868 KB
testcase_14 AC 364 ms
112,920 KB
testcase_15 AC 39 ms
52,500 KB
testcase_16 AC 38 ms
52,884 KB
testcase_17 AC 38 ms
52,796 KB
testcase_18 AC 38 ms
53,228 KB
testcase_19 AC 37 ms
52,708 KB
testcase_20 AC 97 ms
77,288 KB
testcase_21 AC 101 ms
77,520 KB
testcase_22 AC 96 ms
76,588 KB
testcase_23 AC 88 ms
76,716 KB
testcase_24 AC 98 ms
77,304 KB
testcase_25 AC 243 ms
86,560 KB
testcase_26 AC 504 ms
100,408 KB
testcase_27 AC 369 ms
93,560 KB
testcase_28 AC 744 ms
111,960 KB
testcase_29 AC 646 ms
107,652 KB
testcase_30 AC 468 ms
99,736 KB
testcase_31 AC 337 ms
91,940 KB
testcase_32 AC 484 ms
99,656 KB
testcase_33 AC 408 ms
96,140 KB
testcase_34 AC 168 ms
82,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
graph=[[] for x in range(N)]
for i in range(N-1):
    u,v=map(int,input().split())
    u-=1;v-=1
    graph[u].append(v)
    graph[v].append(u)
for x in range(N):
    ans=sum(len(graph[y])-1 for y in graph[x])
    print(ans)
0