krasizorbov

Snake Moves

Apr 24th, 2019
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.28 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Snake_Moves
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             int[] nums = Console.ReadLine().Split(' ', StringSplitOptions.RemoveEmptyEntries).Select(int.Parse).ToArray();
  13.             int r = nums[0];
  14.             int c = nums[1];
  15.             int counter = 0;
  16.             string snake = Console.ReadLine();
  17.  
  18.             var myQue = new Queue<char>();
  19.  
  20.             int capacity = r * c;
  21.  
  22.             for (int i = 0; i < snake.Length; i++)
  23.             {
  24.                 myQue.Enqueue(snake[i]);
  25.                 counter++;
  26.  
  27.                 if (counter == capacity)
  28.                 {
  29.                     break;
  30.                 }
  31.                 if (i == snake.Length - 1)
  32.                 {
  33.                     i = -1;
  34.                 }
  35.             }
  36.  
  37.             var list = myQue.ToList();
  38.  
  39.             counter = 0;
  40.  
  41.             for (int i = 0; i < list.Count; i++)
  42.             {
  43.                 Console.Write(list[i]);
  44.                 counter++;
  45.                 if (counter >= c)
  46.                 {
  47.                     Console.WriteLine();
  48.                     counter = 0;
  49.                 }
  50.             }
  51.         }
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment