Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. public class Startup
  8. {
  9.     public static void Main()
  10.     {
  11.         string[] drivers = Console.ReadLine().Split();
  12.         List<double> zones = Console.ReadLine().Split().Select(double.Parse).ToList();
  13.         List<long> checkpoints = Console.ReadLine().Split().Select(long.Parse).ToList();
  14.  
  15.         for (int i = 0; i < drivers.Length; i++)
  16.         {
  17.             char driver = drivers[i][0];
  18.             double sum = driver;
  19.  
  20.             for (int k = 0; k < zones.Count; k++)
  21.             {
  22.                 double zone = zones[k];
  23.                 if (checkpoints.Any(x => x == zones.IndexOf(zone)))
  24.                 {
  25.                     sum += zone;
  26.                 }
  27.                 else
  28.                 {
  29.                     sum -= zone;
  30.                 }
  31.                 if (sum < 0)
  32.                 {
  33.                     break;
  34.                 }
  35.             }
  36.  
  37.             if (sum > 0)
  38.             {
  39.                 Console.WriteLine($"{drivers[i]} - fuel left {sum:f2}");
  40.             }
  41.             else
  42.             {
  43.                 Console.WriteLine($"{drivers[i]} - reached 0");
  44.             }
  45.         }
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement