結果

問題 No.2427 Tree Distance Two
ユーザー titiatitia
提出日時 2023-08-27 03:15:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 241 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-06-07 23:13:10
合計ジャッジ時間 30,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 1,780 ms
60,800 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 1,760 ms
60,928 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 1,641 ms
62,464 KB
testcase_08 AC 1,702 ms
64,000 KB
testcase_09 AC 1,667 ms
62,848 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,681 ms
61,824 KB
testcase_13 AC 1,685 ms
61,440 KB
testcase_14 AC 1,318 ms
60,288 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,496 KB
testcase_18 AC 24 ms
10,624 KB
testcase_19 AC 24 ms
10,624 KB
testcase_20 AC 60 ms
12,032 KB
testcase_21 AC 68 ms
12,416 KB
testcase_22 AC 35 ms
11,008 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 60 ms
12,032 KB
testcase_25 AC 409 ms
23,936 KB
testcase_26 AC 1,042 ms
41,856 KB
testcase_27 AC 704 ms
33,152 KB
testcase_28 AC 1,616 ms
57,216 KB
testcase_29 AC 1,450 ms
51,584 KB
testcase_30 AC 1,000 ms
40,832 KB
testcase_31 AC 630 ms
30,336 KB
testcase_32 AC 985 ms
40,576 KB
testcase_33 AC 860 ms
37,120 KB
testcase_34 AC 266 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
E=[[] for i in range(N)]

for i in range(N-1):
    u,v=map(int,input().split())
    u-=1
    v-=1
    E[u].append(v)
    E[v].append(u)

for i in range(N):
    ANS=0
    for to in E[i]:
        ANS+=len(E[to])-1
    print(ANS)
0