Advertisement
Spocoman

11. Snowballs

Jan 18th, 2022
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2. using System.Numerics;
  3.  
  4. namespace Snowball
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int n = int.Parse(Console.ReadLine());
  11.             BigInteger value = 0;
  12.             string output = "";
  13.  
  14.             for (int i = 0; i < n; i++)
  15.             {
  16.                 int snowballSnow = int.Parse(Console.ReadLine());
  17.                 int snowballTime = int.Parse(Console.ReadLine());
  18.                 int snowballQuality = int.Parse(Console.ReadLine());
  19.  
  20.                 BigInteger x = BigInteger.Pow(snowballSnow / snowballTime, snowballQuality);
  21.  
  22.                 if (x > value)
  23.                 {
  24.                     value = x;
  25.                     output = $"{snowballSnow} : {snowballTime} = {value} ({snowballQuality})";
  26.                 }
  27.             }
  28.             Console.WriteLine(output);
  29.         }
  30.     }
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement