Spocoman

02. Half Sum Element

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