結果

問題 No.2779 Don't make Pair
ユーザー tobisatistobisatis
提出日時 2024-06-07 21:42:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 2,203 bytes
コンパイル時間 10,256 ms
コンパイル使用メモリ 166,604 KB
実行使用メモリ 208,452 KB
最終ジャッジ日時 2024-06-07 21:42:43
合計ジャッジ時間 11,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
31,360 KB
testcase_01 AC 54 ms
30,976 KB
testcase_02 AC 50 ms
30,592 KB
testcase_03 AC 47 ms
30,336 KB
testcase_04 AC 54 ms
31,104 KB
testcase_05 AC 53 ms
31,104 KB
testcase_06 AC 48 ms
30,464 KB
testcase_07 AC 52 ms
31,104 KB
testcase_08 AC 47 ms
30,464 KB
testcase_09 AC 54 ms
32,256 KB
testcase_10 AC 65 ms
41,216 KB
testcase_11 AC 54 ms
33,536 KB
testcase_12 AC 76 ms
40,320 KB
testcase_13 AC 77 ms
40,568 KB
testcase_14 AC 71 ms
38,656 KB
testcase_15 AC 91 ms
46,976 KB
testcase_16 AC 105 ms
47,232 KB
testcase_17 AC 90 ms
45,056 KB
testcase_18 AC 78 ms
42,240 KB
testcase_19 AC 88 ms
44,032 KB
testcase_20 AC 75 ms
37,504 KB
testcase_21 AC 98 ms
49,152 KB
testcase_22 AC 98 ms
49,408 KB
testcase_23 AC 110 ms
54,528 KB
testcase_24 AC 99 ms
49,152 KB
testcase_25 AC 101 ms
49,280 KB
testcase_26 AC 101 ms
49,408 KB
testcase_27 AC 111 ms
49,792 KB
testcase_28 AC 99 ms
208,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (78 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var az = n.Repeat(Int);
        var lz = new Dictionary<int, int>();
        var rz = new Dictionary<int, int>();
        for (var i = 0; i < n; i++)
        {
            var a = az[i];
            if (rz.ContainsKey(a))
            {
                Out(0);
                Out("");
                return null;
            }
            if (lz.ContainsKey(a)) rz[a] = i;
            else lz[a] = i;
        }
        foreach (var lv in lz.Keys) if (!rz.ContainsKey(lv)) lz.Remove(lv);
        var l = 0;
        if (lz.Count > 0) l = lz.Values.Max();
        var r = n - 1;
        if (rz.Count > 0) r = rz.Values.Min();
        var ans = new List<int>();
        for (var i = l; i < r; i++) ans.Add(i + 1);
        Out(ans.Count);
        Out(ans, " ");
        return null;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0