Advertisement
kklevi

Ezt kaptam de ezzel nemigazán tudtam hirtelen mit kezdeni

Jan 10th, 2022
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4.  
  5. namespace ConsoleApp1
  6. {
  7.     class Program
  8.     {
  9.         static List<int> stringToInt(string[] tmp)
  10.         {
  11.             List<int> result = new List<int>();
  12.             for (int i = 0; i < tmp.Length; i++)
  13.             {
  14.                 if (tmp[i] != "-")
  15.                 {
  16.                     result.Add(int.Parse(tmp[i]));
  17.                 }
  18.             }
  19.             return result;
  20.         }
  21.  
  22.         static void Main(string[] args)
  23.         {
  24.             string[] elsoSor = Console.ReadLine().Trim().Split(' ');
  25.             int kutyaszam = Convert.ToInt32(elsoSor[0]);
  26.             int maxpontok = Convert.ToInt32(elsoSor[1]);
  27.             int minpontok = Convert.ToInt32(elsoSor[2]);
  28.            
  29.  
  30.             string[] elsokutya = Console.ReadLine().Trim().Split(' ');
  31.  
  32.             for (int i = 0; i < kutyaszam; i++)
  33.             {    
  34.                 string[] beolvadsottertek   = Console.ReadLine().Trim().Split(' ');
  35.                 for (int j = 0; j < elsokutya.Length; j++)
  36.                 {
  37.                     int y = 0;
  38.                     while (y < beolvadsottertek.Length && elsokutya[j] != beolvadsottertek[y])
  39.                     {
  40.                         y++;
  41.                     }
  42.                     if (y == beolvadsottertek.Length)
  43.                     {
  44.                         elsokutya[j] = "-";
  45.                     }
  46.                 }
  47.             }
  48.             List<int> vegleges = stringToInt(elsokutya);
  49.             vegleges.Sort();
  50.             int Db = vegleges.Count;
  51.             string eredmeny = "";
  52.             for (int j = 0; j < vegleges.Count; j++)
  53.             {
  54.                 if (j > 0)
  55.                 {
  56.                     eredmeny += " ";
  57.                 }
  58.                 eredmeny += vegleges[j];
  59.             }
  60.  
  61.             Console.WriteLine("{0} {1}", Db, eredmeny);
  62.  
  63.  
  64.         }
  65.     }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement