結果

問題 No.2427 Tree Distance Two
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:15:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,990 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-06-01 20:16:35
合計ジャッジ時間 32,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 1,985 ms
61,056 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 1,990 ms
61,056 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 1,880 ms
62,464 KB
testcase_08 AC 1,812 ms
64,128 KB
testcase_09 AC 1,801 ms
63,488 KB
testcase_10 AC 1,784 ms
64,128 KB
testcase_11 AC 1,750 ms
62,208 KB
testcase_12 AC 1,819 ms
61,824 KB
testcase_13 AC 1,858 ms
61,568 KB
testcase_14 AC 1,435 ms
60,416 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 63 ms
12,160 KB
testcase_21 AC 71 ms
12,288 KB
testcase_22 AC 38 ms
11,136 KB
testcase_23 AC 33 ms
11,008 KB
testcase_24 AC 64 ms
12,160 KB
testcase_25 AC 445 ms
23,936 KB
testcase_26 AC 1,120 ms
41,856 KB
testcase_27 AC 801 ms
33,152 KB
testcase_28 AC 1,726 ms
57,344 KB
testcase_29 AC 1,502 ms
51,456 KB
testcase_30 AC 1,081 ms
40,960 KB
testcase_31 AC 697 ms
30,464 KB
testcase_32 AC 1,046 ms
40,704 KB
testcase_33 AC 968 ms
37,376 KB
testcase_34 AC 294 ms
19,328 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