Advertisement
Spocoman

07. Max Sequence of Equal Elements

Jan 21st, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace MaxSequenceOfEqualElements
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string[] arr = Console.ReadLine().Split();
  11.             int bestCount = 0;
  12.             int bestI = 0;
  13.             for (int i = 0; i < arr.Length; i++)
  14.             {
  15.                 string current = arr[i];
  16.                 int count = 1;
  17.                
  18.                 for (int j = i + 1; j < arr.Length; j++)
  19.                 {
  20.                     if (current == arr[j])
  21.                     {
  22.                         count++;
  23.                     }
  24.                     else
  25.                     {
  26.                         break;
  27.                     }
  28.                 }
  29.                 if (count > bestCount)
  30.                 {
  31.                     bestCount = count;
  32.                     bestI = i;
  33.                 }
  34.             }
  35.             for (int i = 0; i < bestCount; i++)
  36.             {
  37.                 Console.Write(arr[bestI] + " ");
  38.             }
  39.         }
  40.     }
  41. }
  42.  
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement