結果

問題 No.2803 Bocching Star
ユーザー bluemeganebluemegane
提出日時 2024-07-13 07:05:13
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,162 bytes
コンパイル時間 11,348 ms
コンパイル使用メモリ 167,480 KB
実行使用メモリ 189,716 KB
最終ジャッジ日時 2024-07-13 07:05:36
合計ジャッジ時間 19,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,840 KB
testcase_01 AC 54 ms
29,696 KB
testcase_02 AC 59 ms
31,232 KB
testcase_03 AC 77 ms
35,840 KB
testcase_04 AC 170 ms
63,232 KB
testcase_05 AC 116 ms
49,024 KB
testcase_06 AC 71 ms
34,816 KB
testcase_07 AC 101 ms
44,800 KB
testcase_08 AC 85 ms
39,040 KB
testcase_09 AC 184 ms
65,996 KB
testcase_10 AC 181 ms
67,100 KB
testcase_11 AC 189 ms
66,444 KB
testcase_12 AC 100 ms
43,476 KB
testcase_13 AC 163 ms
61,920 KB
testcase_14 AC 127 ms
55,128 KB
testcase_15 AC 192 ms
66,052 KB
testcase_16 AC 126 ms
50,176 KB
testcase_17 AC 85 ms
40,364 KB
testcase_18 AC 76 ms
36,352 KB
testcase_19 AC 164 ms
62,092 KB
testcase_20 AC 122 ms
49,664 KB
testcase_21 AC 108 ms
46,592 KB
testcase_22 AC 109 ms
46,172 KB
testcase_23 AC 190 ms
68,076 KB
testcase_24 AC 219 ms
71,540 KB
testcase_25 AC 208 ms
70,248 KB
testcase_26 AC 211 ms
70,356 KB
testcase_27 AC 196 ms
68,592 KB
testcase_28 AC 204 ms
69,220 KB
testcase_29 AC 197 ms
68,460 KB
testcase_30 AC 216 ms
70,764 KB
testcase_31 AC 189 ms
68,600 KB
testcase_32 AC 215 ms
71,132 KB
testcase_33 AC 60 ms
31,744 KB
testcase_34 AC 61 ms
31,224 KB
testcase_35 AC 60 ms
31,488 KB
testcase_36 AC 60 ms
31,488 KB
testcase_37 AC 61 ms
189,716 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.Linq;
using System.Collections.Generic;
using System;

public class P
{
    public int av { get; set; }
    public int id { get; set; }
}

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 P[n];
        for (int i = 0; i < n; i++) ps[i] = new P { av = a[i], id = i + 1 };
        ps = ps.OrderBy(x => x.av).ToArray();
        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