結果

問題 No.2803 Bocching Star
ユーザー bluemeganebluemegane
提出日時 2024-07-13 07:11:23
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 18,435 ms
コンパイル使用メモリ 169,992 KB
実行使用メモリ 187,136 KB
最終ジャッジ日時 2024-07-13 07:11:52
合計ジャッジ時間 16,271 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,336 KB
testcase_01 AC 53 ms
29,020 KB
testcase_02 AC 57 ms
30,208 KB
testcase_03 AC 71 ms
34,176 KB
testcase_04 AC 123 ms
54,544 KB
testcase_05 AC 93 ms
43,392 KB
testcase_06 AC 66 ms
33,152 KB
testcase_07 AC 95 ms
40,960 KB
testcase_08 AC 78 ms
36,608 KB
testcase_09 AC 127 ms
57,672 KB
testcase_10 AC 132 ms
56,464 KB
testcase_11 AC 146 ms
55,560 KB
testcase_12 AC 89 ms
39,892 KB
testcase_13 AC 117 ms
52,672 KB
testcase_14 AC 103 ms
48,968 KB
testcase_15 AC 142 ms
56,424 KB
testcase_16 AC 106 ms
44,800 KB
testcase_17 AC 77 ms
35,428 KB
testcase_18 AC 71 ms
33,908 KB
testcase_19 AC 122 ms
53,388 KB
testcase_20 AC 100 ms
44,032 KB
testcase_21 AC 91 ms
41,856 KB
testcase_22 AC 95 ms
41,984 KB
testcase_23 AC 139 ms
58,096 KB
testcase_24 AC 164 ms
60,656 KB
testcase_25 AC 157 ms
60,280 KB
testcase_26 AC 159 ms
60,140 KB
testcase_27 AC 146 ms
58,468 KB
testcase_28 AC 153 ms
59,248 KB
testcase_29 AC 144 ms
57,844 KB
testcase_30 AC 164 ms
60,376 KB
testcase_31 AC 148 ms
57,436 KB
testcase_32 AC 168 ms
61,168 KB
testcase_33 AC 60 ms
30,196 KB
testcase_34 AC 59 ms
30,592 KB
testcase_35 AC 59 ms
30,196 KB
testcase_36 AC 60 ms
30,464 KB
testcase_37 AC 60 ms
187,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 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.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var s = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, s, a);
    }
    static void getAns(int n, int s, int[] a)
    {
        if (n == 1) { Console.WriteLine("1\n1"); return; }
        var ps = new (int av, int id)[n];
        for (int i = 0; i < n; i++) ps[i] = (a[i], i + 1);
        Array.Sort(ps);
        var ans = new List<int>();
        if (ps[1].av - ps[0].av > s) ans.Add(ps[0].id);
        for (int i = 1; i < n - 1; i++)
        {
            if (ps[i].av - ps[i - 1].av > s && ps[i + 1].av - ps[i].av > s) ans.Add(ps[i].id);
        }
        if (ps[n - 1].av - ps[n - 2].av > s) ans.Add(ps[n - 1].id);
        Console.WriteLine(ans.Count);
        ans.Sort();
        Console.WriteLine(string.Join(" ", ans));
    }
}
0