結果

問題 No.2427 Tree Distance Two
ユーザー ramdosramdos
提出日時 2023-08-17 21:06:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,792 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-26 21:24:01
合計ジャッジ時間 29,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 1,792 ms
63,360 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 1,764 ms
63,488 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 1,628 ms
67,456 KB
testcase_08 AC 1,721 ms
66,816 KB
testcase_09 AC 1,679 ms
65,536 KB
testcase_10 AC 1,698 ms
66,688 KB
testcase_11 AC 1,655 ms
66,816 KB
testcase_12 AC 1,715 ms
65,920 KB
testcase_13 AC 1,758 ms
65,280 KB
testcase_14 AC 1,391 ms
62,848 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 63 ms
12,160 KB
testcase_21 AC 71 ms
12,416 KB
testcase_22 AC 40 ms
11,264 KB
testcase_23 AC 35 ms
11,008 KB
testcase_24 AC 63 ms
12,160 KB
testcase_25 AC 421 ms
24,576 KB
testcase_26 AC 1,072 ms
43,520 KB
testcase_27 AC 780 ms
34,304 KB
testcase_28 AC 1,675 ms
59,392 KB
testcase_29 AC 1,427 ms
53,504 KB
testcase_30 AC 1,036 ms
42,496 KB
testcase_31 AC 662 ms
31,488 KB
testcase_32 AC 994 ms
42,112 KB
testcase_33 AC 873 ms
38,656 KB
testcase_34 AC 268 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
V=[[] for i in range(N+1)]
for i in range(N-1):
    a,b=map(int,input().split())
    V[a].append(b)
    V[b].append(a)
C=[len(t)-1 for t in V]
for i in range(1,N+1):
    print(sum([C[t] for t in V[i]]))
0