結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,328 KB
testcase_01 AC 29 ms
19,072 KB
testcase_02 AC 27 ms
19,072 KB
testcase_03 AC 27 ms
18,816 KB
testcase_04 AC 26 ms
19,072 KB
testcase_05 AC 28 ms
19,200 KB
testcase_06 AC 163 ms
47,104 KB
testcase_07 AC 204 ms
46,976 KB
testcase_08 AC 31 ms
19,328 KB
testcase_09 AC 35 ms
19,712 KB
testcase_10 AC 32 ms
19,712 KB
testcase_11 AC 37 ms
21,120 KB
testcase_12 AC 94 ms
32,768 KB
testcase_13 AC 131 ms
35,968 KB
testcase_14 AC 66 ms
25,472 KB
testcase_15 AC 196 ms
45,184 KB
testcase_16 AC 195 ms
44,672 KB
testcase_17 AC 204 ms
45,568 KB
testcase_18 AC 212 ms
45,696 KB
testcase_19 AC 206 ms
46,208 KB
testcase_20 AC 208 ms
46,464 KB
testcase_21 AC 205 ms
45,824 KB
testcase_22 AC 208 ms
46,720 KB
testcase_23 AC 211 ms
46,848 KB
testcase_24 AC 212 ms
46,848 KB
testcase_25 AC 219 ms
46,976 KB
testcase_26 AC 219 ms
46,848 KB
testcase_27 AC 216 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