using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { class Program { static void Main(string[] args) { string[] ss = Console.ReadLine().Split(); int n = int.Parse(ss[0]); int k = int.Parse(ss[1]); var li = new List(); while (n > 0) { int w = int.Parse(Console.ReadLine()); if (w > 0) { if (li.Count(x => x >= w) < k) li.Add(w); } else { li.Remove(w * -1); } n--; } Console.WriteLine(li.Count); Console.ReadLine(); } } }