結果

問題 No.2427 Tree Distance Two
ユーザー bluemeganebluemegane
提出日時 2023-08-19 06:59:07
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 972 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 105,216 KB
実行使用メモリ 111,948 KB
最終ジャッジ日時 2024-11-28 21:23:05
合計ジャッジ時間 29,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,040 KB
testcase_01 AC 23 ms
73,320 KB
testcase_02 AC 25 ms
23,168 KB
testcase_03 AC 570 ms
110,288 KB
testcase_04 AC 24 ms
23,168 KB
testcase_05 AC 590 ms
111,948 KB
testcase_06 AC 23 ms
23,296 KB
testcase_07 TLE -
testcase_08 AC 1,133 ms
67,404 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 363 ms
54,620 KB
testcase_15 AC 24 ms
17,920 KB
testcase_16 AC 23 ms
18,048 KB
testcase_17 AC 24 ms
17,792 KB
testcase_18 AC 24 ms
18,048 KB
testcase_19 AC 23 ms
17,920 KB
testcase_20 AC 30 ms
20,216 KB
testcase_21 AC 34 ms
20,348 KB
testcase_22 AC 26 ms
18,432 KB
testcase_23 AC 25 ms
18,304 KB
testcase_24 AC 32 ms
20,072 KB
testcase_25 AC 129 ms
30,712 KB
testcase_26 AC 319 ms
42,860 KB
testcase_27 AC 234 ms
36,984 KB
testcase_28 AC 524 ms
53,600 KB
testcase_29 AC 458 ms
49,764 KB
testcase_30 AC 330 ms
42,232 KB
testcase_31 AC 188 ms
34,816 KB
testcase_32 AC 342 ms
42,352 KB
testcase_33 AC 270 ms
40,948 KB
testcase_34 AC 87 ms
80,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static void getAns(int n)
    {
        var aa = new List<int>[n];
        for (int i = 0; i < n; i++) aa[i] = new List<int>();
        for (int i = 0; i < n - 1; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = int.Parse(line[0]) - 1;
            var b = int.Parse(line[1]) - 1;
            aa[a].Add(b);
            aa[b].Add(a);
        }
        var ans = new int[n];
        foreach (var x in aa)
        {
            var m = x.Count;
            if (m <= 1) continue;
            for (int i = 0; i < m - 1; i++)
                for (int j = i + 1; j < m; j++)
                {
                    ans[x[i]]++;
                    ans[x[j]]++;
                }
        }
        Console.WriteLine(string.Join("\n", ans));
    }
}
0