Advertisement
xxeell

Untitled

Jun 10th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. class Program
  2.     {
  3.         static int res, del19, vsego;
  4.         static int[] x;        
  5.  
  6.         static void InputProcessing()
  7.         {
  8.             if (x[0] % 19 == 0) del19++;
  9.             vsego++;
  10.  
  11.             x[0] = x[1]; x[1] = x[2]; x[2] = x[3];
  12.             x[3] = int.Parse(Console.ReadLine());
  13.  
  14.             if (x[3] % 19 == 0) res += vsego;
  15.             else res += del19;
  16.         }
  17.  
  18.         static void Main()
  19.         {
  20.             res = del19 = vsego = 0;
  21.             x = new int[4];
  22.  
  23.             int n = int.Parse(Console.ReadLine());
  24.  
  25.             for (int i = 0; i < n; i++)
  26.             {
  27.                 if (i < 4) x[i] = int.Parse(Console.ReadLine());
  28.                 else InputProcessing();
  29.             }
  30.  
  31.  
  32.             Console.WriteLine(res);
  33.  
  34.             Console.ReadKey();            
  35.         }
  36.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement