結果

問題 No.806 木を道に
ユーザー keymoonkeymoon
提出日時 2019-02-24 16:43:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 4,628 ms
コンパイル使用メモリ 115,744 KB
実行使用メモリ 47,108 KB
最終ジャッジ日時 2024-07-07 03:41:07
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
25,388 KB
testcase_01 AC 37 ms
27,288 KB
testcase_02 AC 37 ms
25,244 KB
testcase_03 AC 37 ms
25,504 KB
testcase_04 AC 37 ms
27,288 KB
testcase_05 AC 37 ms
25,264 KB
testcase_06 AC 38 ms
27,424 KB
testcase_07 AC 37 ms
27,284 KB
testcase_08 AC 37 ms
25,248 KB
testcase_09 AC 37 ms
25,248 KB
testcase_10 AC 83 ms
32,676 KB
testcase_11 AC 73 ms
34,448 KB
testcase_12 AC 219 ms
44,436 KB
testcase_13 AC 165 ms
36,320 KB
testcase_14 AC 218 ms
43,376 KB
testcase_15 AC 223 ms
40,096 KB
testcase_16 AC 100 ms
37,736 KB
testcase_17 AC 203 ms
41,552 KB
testcase_18 AC 54 ms
29,768 KB
testcase_19 AC 84 ms
32,692 KB
testcase_20 AC 202 ms
41,924 KB
testcase_21 AC 119 ms
34,760 KB
testcase_22 AC 254 ms
47,108 KB
testcase_23 AC 249 ms
44,680 KB
testcase_24 AC 131 ms
38,808 KB
testcase_25 AC 180 ms
43,884 KB
testcase_26 AC 83 ms
33,004 KB
testcase_27 AC 203 ms
44,028 KB
testcase_28 AC 40 ms
25,372 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 System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using Debug = System.Diagnostics.Debug;


class Ph
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        int[][] a = Enumerable.Repeat(0, n - 1).Select(_ => Console.ReadLine().Split().Select(int.Parse).ToArray()).ToArray();
        Assert(3 <= n && n <= 1e5);
        Assert(a.Length == n - 1);
        Assert(a.All(x => x.All(y => 1 <= y && y <= n)));
        var answer = Solve(n, a);
        Console.WriteLine(answer);
    }

    static int Solve(int n, int[][] a) => a.SelectMany(x => x).GroupBy(x => x).Sum(x => Max(0, x.Count() - 2));

    //直径から伸びている部分木の本数
    static int Lie1(int n, int[][] a)
    {
        return 0;
    }

    static void Assert(bool condition)
    {
        if (!condition) throw new Exception();
    }
}
0