結果

問題 No.1438 Broken Drawers
ユーザー kakel-sankakel-san
提出日時 2024-07-07 22:47:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 16,489 ms
コンパイル使用メモリ 169,424 KB
実行使用メモリ 206,652 KB
最終ジャッジ日時 2024-07-07 22:47:30
合計ジャッジ時間 12,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,336 KB
testcase_01 AC 54 ms
30,208 KB
testcase_02 AC 53 ms
30,208 KB
testcase_03 AC 52 ms
30,336 KB
testcase_04 AC 51 ms
30,208 KB
testcase_05 AC 52 ms
30,080 KB
testcase_06 AC 92 ms
53,120 KB
testcase_07 AC 95 ms
52,988 KB
testcase_08 AC 55 ms
30,336 KB
testcase_09 AC 54 ms
29,936 KB
testcase_10 AC 54 ms
30,052 KB
testcase_11 AC 68 ms
32,000 KB
testcase_12 AC 80 ms
39,040 KB
testcase_13 AC 86 ms
43,496 KB
testcase_14 AC 76 ms
36,840 KB
testcase_15 AC 107 ms
51,540 KB
testcase_16 AC 95 ms
51,200 KB
testcase_17 AC 95 ms
51,968 KB
testcase_18 AC 102 ms
52,148 KB
testcase_19 AC 98 ms
52,736 KB
testcase_20 AC 106 ms
52,608 KB
testcase_21 AC 101 ms
52,084 KB
testcase_22 AC 101 ms
52,992 KB
testcase_23 AC 102 ms
53,248 KB
testcase_24 AC 102 ms
52,892 KB
testcase_25 AC 102 ms
52,836 KB
testcase_26 AC 109 ms
52,992 KB
testcase_27 AC 99 ms
206,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (110 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();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var pos = new int[n + 1];
        for (var i = 0; i < n; ++i) pos[a[i]] = i;
        var ans = 0;
        for (var i = 1; i <= n; ++i)
        {
            if (a[pos[i]] > 0)
            {
                ++ans;
                a[pos[i]] = 0;
                if (pos[i] > 0) a[pos[i] - 1] = 0;
            }
        }
        WriteLine(ans);
    }
}
0