結果
| 問題 | No.1438 Broken Drawers |
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2021-03-27 09:13:14 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 223 ms / 2,000 ms |
| コード長 | 776 bytes |
| 記録 | |
| コンパイル時間 | 3,011 ms |
| コンパイル使用メモリ | 106,624 KB |
| 実行使用メモリ | 45,312 KB |
| 最終ジャッジ日時 | 2024-11-29 08:07:16 |
| 合計ジャッジ時間 | 6,189 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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);
}
}
bluemegane