結果

問題 No.1563 Same Degree
ユーザー kakel-sankakel-san
提出日時 2024-03-14 23:02:41
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 13,014 ms
コンパイル使用メモリ 167,888 KB
実行使用メモリ 217,340 KB
最終ジャッジ日時 2024-09-29 23:50:08
合計ジャッジ時間 16,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,080 KB
testcase_01 AC 123 ms
51,968 KB
testcase_02 AC 127 ms
51,328 KB
testcase_03 AC 129 ms
51,328 KB
testcase_04 AC 125 ms
52,352 KB
testcase_05 AC 123 ms
51,712 KB
testcase_06 AC 112 ms
48,000 KB
testcase_07 AC 113 ms
47,872 KB
testcase_08 AC 118 ms
48,384 KB
testcase_09 AC 117 ms
48,368 KB
testcase_10 AC 114 ms
48,128 KB
testcase_11 AC 79 ms
36,864 KB
testcase_12 AC 93 ms
43,008 KB
testcase_13 AC 174 ms
60,348 KB
testcase_14 AC 183 ms
60,452 KB
testcase_15 AC 156 ms
217,340 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (106 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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 t = NN;
        var ans = new bool[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, m) = (c[0], c[1]);
            var map = NMap(m);
            var count = new int[n];
            foreach (var edge in map)
            {
                ++count[edge[0]];
                ++count[edge[1]];
            }
            var clist = new int[n];
            for (var i = 0; i < n; ++i) ++clist[count[i]];
            for (var i = 0; i < n; ++i) if (clist[i] > 1)
            {
                ans[u] = true;
                break;
            }
        }
        WriteLine(string.Join("\n", ans.Select(f => f ? "Yes" : "No")));
    }
}
0