Advertisement
Spocoman

01. Messaging

Feb 4th, 2022
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Messaging
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<string> numbers = Console.ReadLine()
  12.                 .Split(' ', StringSplitOptions.RemoveEmptyEntries)
  13.                 .ToList();
  14.             int[] output = new int[numbers.Count];
  15.  
  16.             for (int i = 0; i < numbers.Count; i++)
  17.             {
  18.                 int sum = 0;
  19.                 int current = int.Parse(numbers[i]);
  20.  
  21.                 for (int j = 0; j < numbers[i].Length; j++)
  22.                 {
  23.                     sum += current % 10;
  24.                     current /= 10;
  25.                 }
  26.                 output[i] = sum;
  27.             }
  28.  
  29.             string text = Console.ReadLine();
  30.  
  31.             for (int i = 0; i < output.Length; i++)
  32.             {
  33.  
  34.                 while (output[i] >= text.Length)
  35.                 {
  36.                     output[i] -= text.Length;
  37.                 }
  38.  
  39.                 Console.Write($"{text[output[i] + i]}");
  40.             }
  41.         }
  42.     }
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement