結果

問題 No.1605 Matrix Shape
ユーザー kakel-sankakel-san
提出日時 2024-02-12 23:17:58
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,241 bytes
コンパイル時間 7,992 ms
コンパイル使用メモリ 167,488 KB
実行使用メモリ 212,556 KB
最終ジャッジ日時 2024-09-28 18:13:36
合計ジャッジ時間 15,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
31,736 KB
testcase_01 AC 68 ms
31,616 KB
testcase_02 AC 69 ms
31,616 KB
testcase_03 AC 70 ms
31,616 KB
testcase_04 WA -
testcase_05 AC 69 ms
31,744 KB
testcase_06 AC 70 ms
31,740 KB
testcase_07 AC 69 ms
31,616 KB
testcase_08 AC 69 ms
32,000 KB
testcase_09 AC 72 ms
31,616 KB
testcase_10 AC 70 ms
31,844 KB
testcase_11 AC 70 ms
31,616 KB
testcase_12 AC 69 ms
31,736 KB
testcase_13 AC 68 ms
31,616 KB
testcase_14 AC 66 ms
31,844 KB
testcase_15 AC 66 ms
31,844 KB
testcase_16 AC 67 ms
31,616 KB
testcase_17 AC 68 ms
31,616 KB
testcase_18 AC 65 ms
31,744 KB
testcase_19 AC 258 ms
73,508 KB
testcase_20 AC 256 ms
67,548 KB
testcase_21 AC 246 ms
63,712 KB
testcase_22 WA -
testcase_23 AC 273 ms
73,540 KB
testcase_24 AC 264 ms
64,476 KB
testcase_25 AC 231 ms
63,416 KB
testcase_26 AC 234 ms
63,180 KB
testcase_27 AC 214 ms
63,304 KB
testcase_28 WA -
testcase_29 AC 237 ms
63,296 KB
testcase_30 AC 247 ms
67,296 KB
testcase_31 AC 238 ms
63,904 KB
testcase_32 AC 252 ms
65,228 KB
testcase_33 WA -
testcase_34 AC 210 ms
60,648 KB
testcase_35 AC 186 ms
61,360 KB
testcase_36 AC 132 ms
212,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var map = NArr(n);
        var cin = new int[200001];
        var cout = new int[200001];
        var eq = new int[200001];
        foreach (var arr in map) if (arr[0] != arr[1])
        {
            ++cin[arr[0]];
            ++cout[arr[1]];
        }
        var scount = 0;
        for (var i = 0; i < cin.Length; ++i)
        {
            if (cin[i] != cout[i])
            {
                scount += Math.Max(0, cin[i] - cout[i]);
            }
        }
        if (scount == 0)
        {
            var set = new HashSet<int>(map.Select(mi => mi[0]));
            WriteLine(set.Count);
        }
        else if (scount == 1)
        {
            WriteLine(1);
        }
        else
        {
            WriteLine(0);
        }
    }
}
0