Advertisement
Spocoman

08. Equal Pairs

Nov 20th, 2021 (edited)
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.02 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EqualPairs
  4.  
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int num = int.Parse(Console.ReadLine());
  11.             int equalValue = int.Parse(Console.ReadLine()) + int.Parse(Console.ReadLine());
  12.             int maxdiff = 0;
  13.  
  14.             for (int i = 0; i < num - 1; i++)
  15.             {
  16.                 int currentValue = int.Parse(Console.ReadLine()) + int.Parse(Console.ReadLine());
  17.                 int currentDiff = Math.Abs(equalValue - currentValue);
  18.  
  19.                 if (currentDiff > maxdiff)
  20.                 {
  21.                     maxdiff = currentDiff;
  22.                 }
  23.                 else
  24.                 {
  25.                     equalValue = currentValue;
  26.                 }
  27.             }
  28.             if (maxdiff == 0)
  29.             {
  30.                 Console.WriteLine($"Yes, value={ equalValue}");
  31.             }
  32.             else
  33.             {
  34.                 Console.WriteLine($"No, maxdiff={ maxdiff}");
  35.             }
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement