結果

問題 No.1438 Broken Drawers
ユーザー bluemeganebluemegane
提出日時 2021-03-27 07:42:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 112,148 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-05-06 21:47:40
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
19,328 KB
testcase_01 AC 29 ms
18,944 KB
testcase_02 AC 29 ms
18,944 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 30 ms
19,328 KB
testcase_05 AC 29 ms
19,072 KB
testcase_06 AC 182 ms
46,848 KB
testcase_07 AC 222 ms
47,104 KB
testcase_08 AC 34 ms
19,712 KB
testcase_09 AC 33 ms
19,200 KB
testcase_10 AC 33 ms
19,456 KB
testcase_11 AC 40 ms
20,736 KB
testcase_12 AC 104 ms
33,152 KB
testcase_13 AC 141 ms
36,224 KB
testcase_14 AC 76 ms
25,472 KB
testcase_15 AC 213 ms
45,056 KB
testcase_16 AC 211 ms
44,544 KB
testcase_17 AC 221 ms
45,696 KB
testcase_18 AC 231 ms
46,080 KB
testcase_19 AC 229 ms
46,208 KB
testcase_20 AC 230 ms
46,336 KB
testcase_21 AC 224 ms
45,696 KB
testcase_22 AC 234 ms
46,464 KB
testcase_23 AC 238 ms
46,976 KB
testcase_24 AC 234 ms
47,104 KB
testcase_25 AC 234 ms
46,720 KB
testcase_26 AC 236 ms
46,848 KB
testcase_27 AC 235 ms
46,848 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];
        var ok = new bool[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 };
            ok[i] = true;
        }
        getAns(n, ps, ok);
    }
    static void getAns(int n, P[] ps, bool[] ok)
    {
        ps = ps.OrderBy(x => x.a).ToArray();
        var count = 0;
        for (int i = 0; i < n; i++)
        {
            if (ok[ps[i].id])
            {
                count++;
                if (ps[i].id != 0) ok[ps[i].id - 1] = false;
            }
        }
        Console.WriteLine(count);
    }
}
0