Spocoman

02. Hospital

Nov 20th, 2021 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.95 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Hospital
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int period = int.Parse(Console.ReadLine());
  10.             int treated = 0;
  11.             int untreated = 0;
  12.             int doctors = 7;
  13.  
  14.             for (int i = 1; i <= period; i++)
  15.             {
  16.                 int patients = int.Parse(Console.ReadLine());
  17.  
  18.                 if (untreated > treated && i % 3 == 0)
  19.                 {
  20.                     doctors++;
  21.                 }
  22.                 if (patients > doctors)
  23.                 {
  24.                     treated += doctors;
  25.                     untreated += patients - doctors;
  26.                 }
  27.                 else
  28.                 {
  29.                     treated += patients;
  30.                 }
  31.             }
  32.             Console.WriteLine($"Treated patients: { treated}.");
  33.             Console.WriteLine($"Untreated patients: { untreated}.");
  34.         }
  35.     }
  36. }
  37.  
Add Comment
Please, Sign In to add comment