marto9119

Untitled

May 24th, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.28 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _02._Car_Race
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             List<int> list = Console.ReadLine().
  10.                 Split(" ", StringSplitOptions.RemoveEmptyEntries).
  11.                 Select(int.Parse).ToList();
  12.  
  13.             int raselenght = list.Count / 2;
  14.             double left =  0;
  15.             double right = 0;
  16.  
  17.             for (int l = 0; l < raselenght; l++)
  18.             {
  19.                 if (list[l] != 0)
  20.                 {
  21.                     left += list[l];
  22.                 }
  23.                 else
  24.                 {
  25.                     left *= 0.8;
  26.                 }
  27.             }
  28.  
  29.             for (int r = list.Count-1; r > raselenght; r--)
  30.             {
  31.                 if (list[r] != 0)
  32.                 {
  33.                     right += list[r];
  34.                 }
  35.                 else
  36.                 {
  37.                     right*= 0.8;
  38.                 }
  39.             }
  40.  
  41.             if (left < right)
  42.             {
  43.                 Console.WriteLine($"The winner is left with total time: {left}");
  44.             }
  45.             else if (right < left)
  46.             {
  47.                 Console.WriteLine($"The winner is right with total time: {right}");
  48.             }
  49.         }
  50.     }
  51. }
Add Comment
Please, Sign In to add comment