Advertisement
marto9119

Untitled

Jan 23rd, 2023
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int pairs = int.Parse(Console.ReadLine());
  10.             int maxDif = int.MinValue;
  11.             int a = 0, b = 0, c = 0,  same = 0;
  12.             int minA = int.MaxValue , maxA = int.MinValue  ,lastA = 0;
  13.  
  14.             for (int i = 0; i < pairs; i++)
  15.             {
  16.                 int firstNumb = int.Parse(Console.ReadLine());
  17.                 a += firstNumb;
  18.  
  19.                 for (int ii = 0; ii < 1; ii++)
  20.                 {
  21.                     int secondNumb = int.Parse(Console.ReadLine());
  22.                     a += secondNumb;
  23.                 }
  24.                 if (i == 0) { b = a ; }
  25.                 if (b == a) { same++; }
  26.  
  27.                
  28.  
  29.                 c = Math.Abs(lastA - a);
  30.                 lastA = a;
  31.  
  32.                 if (c > maxDif && i != 0) { maxDif = c; }
  33.  
  34.                
  35.                 a = 0;
  36.             }
  37.             if (pairs == same )
  38.             {
  39.                 Console.WriteLine($"Yes, value={b}");
  40.             }
  41.             else
  42.             {
  43.                 Console.WriteLine($"No, maxdiff={maxDif}");
  44.             }
  45.         }
  46.  
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement