結果

問題 No.1438 Broken Drawers
ユーザー bluemeganebluemegane
提出日時 2021-03-27 07:53:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 106,880 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-05-06 21:47:56
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,072 KB
testcase_01 AC 29 ms
19,072 KB
testcase_02 AC 29 ms
18,944 KB
testcase_03 AC 27 ms
19,072 KB
testcase_04 AC 29 ms
19,072 KB
testcase_05 AC 29 ms
18,816 KB
testcase_06 AC 182 ms
45,184 KB
testcase_07 AC 217 ms
45,056 KB
testcase_08 AC 34 ms
19,456 KB
testcase_09 AC 33 ms
19,200 KB
testcase_10 AC 33 ms
19,200 KB
testcase_11 AC 40 ms
20,864 KB
testcase_12 AC 101 ms
33,024 KB
testcase_13 AC 141 ms
36,224 KB
testcase_14 AC 76 ms
25,472 KB
testcase_15 AC 215 ms
43,520 KB
testcase_16 AC 207 ms
43,136 KB
testcase_17 AC 223 ms
44,032 KB
testcase_18 AC 225 ms
44,416 KB
testcase_19 AC 228 ms
44,544 KB
testcase_20 AC 224 ms
44,928 KB
testcase_21 AC 216 ms
44,160 KB
testcase_22 AC 228 ms
44,672 KB
testcase_23 AC 233 ms
45,312 KB
testcase_24 AC 231 ms
45,312 KB
testcase_25 AC 226 ms
45,056 KB
testcase_26 AC 227 ms
45,440 KB
testcase_27 AC 228 ms
45,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

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

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var ps = new P[n];
        string[] line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++)
        {
            ps[i] = new P { a = int.Parse(line[i]), id = i };
        }
        getAns(n, ps);
    }
    static void getAns(int n, P[] ps)
    {
        var ng = new bool[n];
        ps = ps.OrderBy(x => x.a).ToArray();
        var count = 0;
        for (int i = 0; i < n; i++)
        {
            if (!ng[ps[i].id])
            {
                count++;
                if (ps[i].id != 0) ng[ps[i].id - 1] = true;
            }
        }
        Console.WriteLine(count);
    }
}
0