Advertisement
elena1234

Car Race

Sep 30th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace CarRace
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             List<int> timeOfcarRace = Console.ReadLine().Split().Select(int.Parse).ToList();
  12.             double SumTimeLeftCar = 0;
  13.             double SumTimeRightCar = 0;
  14.  
  15.             for (int i = 0; i < timeOfcarRace.Count/2; i++)
  16.             {
  17.                 if (timeOfcarRace[i] != 0)
  18.                 {
  19.                     SumTimeLeftCar += timeOfcarRace[i];
  20.                 }
  21.                 else
  22.                 {
  23.                     double currentTimeLeft = SumTimeLeftCar;
  24.                     double timeToReduce = currentTimeLeft * 0.2;
  25.                     SumTimeLeftCar = SumTimeLeftCar - timeToReduce;
  26.                 }
  27.             }
  28.  
  29.             for (int k = timeOfcarRace.Count - 1; k >= timeOfcarRace.Count/2+1; k--)
  30.             {
  31.                 if (timeOfcarRace[k] != 0)
  32.                 {
  33.                     SumTimeRightCar += timeOfcarRace[k];
  34.                 }
  35.                 else
  36.                 {
  37.                     double currentTimeRight = SumTimeRightCar;
  38.                     double timeToReduce = currentTimeRight * 0.2;
  39.                     SumTimeRightCar = SumTimeRightCar - timeToReduce;
  40.                 }
  41.             }
  42.  
  43.             if (SumTimeLeftCar < SumTimeRightCar)
  44.             {
  45.                 Console.WriteLine($"The winner is left with total time: {SumTimeLeftCar}");
  46.             }
  47.  
  48.             else if (SumTimeRightCar < SumTimeLeftCar)
  49.             {
  50.                 Console.WriteLine($"The winner is right with total time: {SumTimeRightCar}");
  51.             }
  52.         }
  53.     }
  54. }
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement