Advertisement
Spocoman

02. The Lift

Nov 4th, 2023 (edited)
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace TheLift
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int people = int.Parse(Console.ReadLine());
  11.  
  12.             int[] wagons = Console.ReadLine()
  13.                 .Split(" ", StringSplitOptions.RemoveEmptyEntries)
  14.                 .Select(int.Parse)
  15.                 .ToArray();
  16.  
  17.             for (int i = 0; i < wagons.Length; i++)
  18.             {
  19.                 for (int j = wagons[i]; j < 4; j++)
  20.                 {
  21.                     if (people == 0)
  22.                     {
  23.                         break;
  24.                     }
  25.                     wagons[i]++;
  26.                     people--;
  27.                 }
  28.             }
  29.  
  30.             if (wagons[wagons.Length - 1] < 4)
  31.             {
  32.                 Console.WriteLine("The lift has empty spots!");
  33.             }
  34.             else if (people > 0)
  35.             {
  36.                 Console.WriteLine($"There isn't enough space! {people} people in a queue!");
  37.             }
  38.             Console.WriteLine(string.Join(" ", wagons));
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement