46362023-03-30 13:31:50TortelliniJrKert (75 pont)csharpFutási hiba 63/75437ms75196 KiB
using System;
using System.Collections.Generic;
using System.Linq;

namespace Kert
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] inp = Console.ReadLine().Split().Select(int.Parse).ToArray();
            List<int> temp = new List<int>();
            int dom = 0;
            int azonosmax = 0;
            for (int u = 0; u < inp[0]; u++)
            {
                temp.Clear();
                temp.AddRange(Console.ReadLine().Split().Select(int.Parse));
                int most = temp.GroupBy(i => i)
                    .OrderByDescending(grp => grp.Count())
                    .First()
                    .Count();
                if (most > inp[1] / 2)
                {
                    dom++;
                }
                int longest = 1;
                int current = 1;
                for (int i = 1; i < temp.Count; i++)
                {
                    if (temp[i] == temp[i - 1])
                    {
                        current++;
                    }
                    else
                    {
                        longest = Math.Max(longest, current);
                        current = 1;
                    }
                }
                longest = Math.Max(longest, current);
                azonosmax = Math.Max(azonosmax, longest);
            }
            Console.WriteLine(dom);
            Console.WriteLine(azonosmax);
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base63/75
1Elfogadva0/039ms22452 KiB
2Elfogadva0/0414ms71184 KiB
3Elfogadva4/437ms23096 KiB
4Elfogadva4/437ms23884 KiB
5Elfogadva4/439ms24140 KiB
6Elfogadva4/439ms24460 KiB
7Elfogadva4/441ms24968 KiB
8Elfogadva4/439ms25464 KiB
9Elfogadva4/439ms25640 KiB
10Elfogadva4/450ms28548 KiB
11Elfogadva6/643ms26780 KiB
12Elfogadva6/657ms31920 KiB
13Elfogadva6/692ms47168 KiB
14Elfogadva6/6437ms73016 KiB
15Futási hiba0/6254ms75148 KiB
16Futási hiba0/6337ms75196 KiB
17Elfogadva7/7277ms74692 KiB