Advertisement
vencinachev

BasketBall

Mar 27th, 2022
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Lists
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             SortedDictionary<string, int> points = new SortedDictionary<string, int>();
  12.             while(true)
  13.             {
  14.                 string command = Console.ReadLine();
  15.                 if (command == "END")
  16.                 {
  17.                     break;
  18.                 }
  19.                 string[] input = command.Split('-').ToArray();
  20.                 string name = input[0];
  21.                 int p = int.Parse(input[1]);
  22.                 if (!points.ContainsKey(name))
  23.                 {
  24.                     points.Add(name, p);
  25.                 }
  26.                 else
  27.                 {
  28.                     points[name] += p;
  29.                 }
  30.             }
  31.  
  32.             foreach (var item in points)
  33.             {
  34.                 Console.WriteLine($"{item.Key}->{item.Value}");
  35.             }
  36.  
  37.         }
  38.     }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement