Advertisement
Spocoman

05. Drum Set

Feb 5th, 2022
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace DrumSet
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             double savings = double.Parse(Console.ReadLine());
  12.             List<int> drumSet = Console.ReadLine().Split().Select(int.Parse).ToList();
  13.  
  14.             List<int> currentSet = new List <int> (drumSet);
  15.             string hitPower = Console.ReadLine();
  16.  
  17.             while (hitPower != "Hit it again, Gabsy!")
  18.             {
  19.                 int hit = int.Parse(hitPower);
  20.  
  21.                 for (int i = 0; i < currentSet.Count; i++)
  22.                 {              
  23.                     currentSet[i] -= hit;
  24.  
  25.                     if (currentSet[i] <= 0)
  26.                     {
  27.                         if (drumSet[i] * 3 <= savings)
  28.                         {
  29.                             currentSet[i] = drumSet[i];
  30.                             savings -= drumSet[i] * 3;
  31.                         }
  32.                         else
  33.                         {  
  34.                             currentSet.RemoveAt(i);
  35.                             drumSet.RemoveAt(i);
  36.                             i--;
  37.                         }
  38.                     }
  39.                 }
  40.                 hitPower = Console.ReadLine();
  41.             }
  42.             Console.WriteLine(string.Join(" ", currentSet));
  43.             Console.WriteLine($"Gabsy has {savings:f2}lv.");
  44.         }
  45.     }
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement