結果

問題 No.2427 Tree Distance Two
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-18 21:29:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-11-28 05:44:59
合計ジャッジ時間 30,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,874 ms
70,400 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 1,845 ms
70,272 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 1,789 ms
81,152 KB
testcase_08 AC 1,861 ms
83,072 KB
testcase_09 AC 1,772 ms
82,048 KB
testcase_10 AC 1,907 ms
82,944 KB
testcase_11 AC 1,795 ms
80,128 KB
testcase_12 AC 1,823 ms
77,952 KB
testcase_13 AC 1,847 ms
75,904 KB
testcase_14 AC 1,426 ms
69,632 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 66 ms
12,416 KB
testcase_21 AC 74 ms
12,672 KB
testcase_22 AC 39 ms
11,008 KB
testcase_23 AC 34 ms
10,880 KB
testcase_24 AC 64 ms
12,160 KB
testcase_25 AC 427 ms
26,496 KB
testcase_26 AC 1,098 ms
47,616 KB
testcase_27 AC 762 ms
37,376 KB
testcase_28 AC 1,719 ms
65,792 KB
testcase_29 AC 1,496 ms
59,136 KB
testcase_30 AC 1,074 ms
46,592 KB
testcase_31 AC 707 ms
34,176 KB
testcase_32 AC 1,068 ms
46,208 KB
testcase_33 AC 948 ms
42,112 KB
testcase_34 AC 288 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Edge = [[] for _ in range(N)]
for i in range(N-1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    Edge[u].append(v)
    Edge[v].append(u)
ans = [0]*N
# ある頂点vに隣接している頂点同士は+=1となる
for i in range(N):
    v = i
    kouho = Edge[i]
    for j in kouho:
        ans[j] += len(kouho)-1
print(*ans, sep="\n")
0