結果

問題 No.2427 Tree Distance Two
ユーザー kakel-sankakel-san
提出日時 2023-08-18 21:31:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 107,776 KB
実行使用メモリ 78,616 KB
最終ジャッジ日時 2024-11-28 05:51:28
合計ジャッジ時間 16,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
19,072 KB
testcase_01 AC 32 ms
19,200 KB
testcase_02 AC 33 ms
19,200 KB
testcase_03 AC 711 ms
71,268 KB
testcase_04 AC 33 ms
19,200 KB
testcase_05 AC 751 ms
71,520 KB
testcase_06 AC 33 ms
19,072 KB
testcase_07 AC 673 ms
78,616 KB
testcase_08 AC 680 ms
77,040 KB
testcase_09 AC 674 ms
77,032 KB
testcase_10 AC 669 ms
77,552 KB
testcase_11 AC 668 ms
77,648 KB
testcase_12 AC 753 ms
76,788 KB
testcase_13 AC 708 ms
74,724 KB
testcase_14 AC 524 ms
70,368 KB
testcase_15 AC 32 ms
19,328 KB
testcase_16 AC 32 ms
19,328 KB
testcase_17 AC 32 ms
19,200 KB
testcase_18 AC 33 ms
19,328 KB
testcase_19 AC 32 ms
19,328 KB
testcase_20 AC 44 ms
22,076 KB
testcase_21 AC 48 ms
22,460 KB
testcase_22 AC 36 ms
20,224 KB
testcase_23 AC 35 ms
19,968 KB
testcase_24 AC 45 ms
22,196 KB
testcase_25 AC 166 ms
33,788 KB
testcase_26 AC 430 ms
53,496 KB
testcase_27 AC 302 ms
44,904 KB
testcase_28 AC 667 ms
68,448 KB
testcase_29 AC 602 ms
64,244 KB
testcase_30 AC 420 ms
52,452 KB
testcase_31 AC 268 ms
43,000 KB
testcase_32 AC 418 ms
52,072 KB
testcase_33 AC 365 ms
48,896 KB
testcase_34 AC 120 ms
30,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var map = NMap(n - 1);
        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var ans = new int[n];
        for (var i = 0; i < n; ++i)
        {
            foreach (var next in tree[i])
            {
                ans[next] += tree[i].Count - 1;
            }
        }
        WriteLine(string.Join("\n", ans));
    }
}
0