結果

問題 No.1438 Broken Drawers
ユーザー bluemeganebluemegane
提出日時 2021-03-27 09:13:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 116,832 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-05-06 21:48:58
合計ジャッジ時間 6,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
19,200 KB
testcase_01 AC 29 ms
19,328 KB
testcase_02 AC 30 ms
19,200 KB
testcase_03 AC 29 ms
19,072 KB
testcase_04 AC 29 ms
19,328 KB
testcase_05 AC 30 ms
18,816 KB
testcase_06 AC 174 ms
45,184 KB
testcase_07 AC 213 ms
45,184 KB
testcase_08 AC 33 ms
19,840 KB
testcase_09 AC 33 ms
19,584 KB
testcase_10 AC 33 ms
19,584 KB
testcase_11 AC 41 ms
20,864 KB
testcase_12 AC 102 ms
32,512 KB
testcase_13 AC 139 ms
35,072 KB
testcase_14 AC 78 ms
25,216 KB
testcase_15 AC 214 ms
43,648 KB
testcase_16 AC 210 ms
43,008 KB
testcase_17 AC 223 ms
44,032 KB
testcase_18 AC 231 ms
44,416 KB
testcase_19 AC 231 ms
44,672 KB
testcase_20 AC 230 ms
44,800 KB
testcase_21 AC 225 ms
44,160 KB
testcase_22 AC 225 ms
44,800 KB
testcase_23 AC 233 ms
45,312 KB
testcase_24 AC 235 ms
45,312 KB
testcase_25 AC 232 ms
45,312 KB
testcase_26 AC 229 ms
44,928 KB
testcase_27 AC 237 ms
45,184 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];
        var count = 0;
        foreach (var x in ps.OrderBy(y => y.a))
            if (!ng[x.id])
            {
                count++;
                if (x.id != 0) ng[x.id - 1] = true;
            }
        Console.WriteLine(count);
    }
}
0