結果

問題 No.2427 Tree Distance Two
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:16:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 125,932 KB
最終ジャッジ日時 2024-12-22 09:08:39
合計ジャッジ時間 13,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,572 KB
testcase_01 AC 34 ms
52,324 KB
testcase_02 AC 32 ms
52,988 KB
testcase_03 AC 701 ms
114,608 KB
testcase_04 AC 34 ms
51,892 KB
testcase_05 AC 700 ms
114,252 KB
testcase_06 AC 34 ms
52,056 KB
testcase_07 AC 537 ms
124,700 KB
testcase_08 AC 596 ms
125,504 KB
testcase_09 AC 533 ms
123,984 KB
testcase_10 AC 587 ms
125,932 KB
testcase_11 AC 575 ms
123,384 KB
testcase_12 AC 641 ms
121,276 KB
testcase_13 AC 661 ms
118,624 KB
testcase_14 AC 317 ms
112,248 KB
testcase_15 AC 34 ms
51,884 KB
testcase_16 AC 34 ms
52,824 KB
testcase_17 AC 34 ms
53,808 KB
testcase_18 AC 35 ms
53,028 KB
testcase_19 AC 34 ms
52,600 KB
testcase_20 AC 92 ms
77,140 KB
testcase_21 AC 89 ms
77,216 KB
testcase_22 AC 85 ms
76,796 KB
testcase_23 AC 79 ms
76,152 KB
testcase_24 AC 93 ms
76,760 KB
testcase_25 AC 208 ms
85,668 KB
testcase_26 AC 441 ms
99,784 KB
testcase_27 AC 306 ms
93,196 KB
testcase_28 AC 702 ms
111,464 KB
testcase_29 AC 579 ms
107,536 KB
testcase_30 AC 410 ms
99,344 KB
testcase_31 AC 266 ms
91,836 KB
testcase_32 AC 409 ms
99,628 KB
testcase_33 AC 360 ms
96,124 KB
testcase_34 AC 149 ms
82,372 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