Advertisement
Spocoman

02. Race

Apr 19th, 2023
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.29 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Text.RegularExpressions;
  4.  
  5. namespace Race
  6. {
  7.     internal class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             Dictionary<string, int> racers = Console.ReadLine()
  12.                 .Split(", ")
  13.                 .ToHashSet()
  14.                 .ToDictionary(key => key, value => 0);
  15.  
  16.             string command;
  17.  
  18.             while ((command = Console.ReadLine()) != "end of race")
  19.             {
  20.                 string racer = Regex.Replace(command, @"[^a-zA-Z]+", "");
  21.                 int sum = Regex.Replace(command, @"\D+", "")
  22.                     .ToCharArray()
  23.                     .Select(x => x - 48)
  24.                     .Sum();
  25.      
  26.                 if (racers.ContainsKey(racer))
  27.                 {
  28.                     racers[racer] += sum;
  29.                 }
  30.             }
  31.  
  32.             int index = 0;
  33.             var placeNum = new[] { "1st", "2nd", "3rd" };
  34.  
  35.             foreach (var racer in racers.OrderByDescending(x => x.Value))
  36.             {
  37.                 Console.WriteLine($"{placeNum[index]} place: {racer.Key}");
  38.              
  39.                 if (index == 2)
  40.                 {
  41.                     break;
  42.                 }
  43.              
  44.                 index++;
  45.             }
  46.         }
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement