Submit | All submissions | Best solutions | Back to list |
HELLOKIT - Hello Kitty |
Kitty sends a kind of original email messages to her friend Garf. To write a message, she chooses a word W and a number n and replicates W n times horizontally. Then she repeats this string in the next line, but rotating the characters once to the left. And she repeats this 'rotate-and-output' process until the word W appears displayed as the first column of the rectangular pattern that she produces. As an example, when she chooses the word Hello and the number 3, she gets the pattern:
HelloHelloHello
elloHelloHelloH
lloHelloHelloHe
loHelloHelloHel
oHelloHelloHell
Kitty has been sending such emails during the last three years. Recently, Garf told her that perhaps her work may be automatized with a software to produce Kitty's patterns. Could you help her?
Input
The input contains several test cases, each one of them in a separate line. Each test case has a word and a positive integer that should generate the corresponding rectangular pattern. The word is a string of alphabetic characters (a..z). The number is less than 10.
A line whose contents is a single period character means the end of the input (this last line is not to be processed).
Output
Output texts for each input case are presented in the same order that input is read. For each test case the answer must be a left aligned Kitty pattern corresponding to the input.
Example
Input: Love 1 Kitty 2 . Output: Love oveL veLo eLov KittyKitty ittyKittyK ttyKittyKi tyKittyKit yKittyKitt
Added by: | Daniel Gómez Didier |
Date: | 2009-10-31 |
Time limit: | 0.209s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 NODEJS OBJC PERL6 SQLITE VB.NET |
hide comments
|
||||||||
2010-04-22 18:29:41 Mohamed Ramzy
what output of MaM as example , i think that what gives me Worng Answer ?? |
||||||||
2010-04-18 21:27:48 Buda IM (retired)
is the ( "." ) termination of input. |
||||||||
2010-04-06 16:29:43 SANDEEP
what is output for input xyx 2 |
||||||||
2010-01-01 17:44:29 GS
I suppose there is some mistake in question....... it is not less than 10.... ( may be <= 10 )..... |
||||||||
2009-12-23 08:18:41 Seshadri R
What is the upper limit on the length of input text? |
||||||||
2009-12-14 17:02:33 GS
Are u sure the number is less than 10???.... Last edit: 2009-12-14 17:02:56 |