Woburn Challenge 1995
Problem 1: Coded Message
You have just found the secret instructions on how to encode a message:
"Calculate the message length and round up to the nearest multiple of 5. Write out the message in rows of 5 characters each until the message is complete. Send the message a column at at a time from left to right."
For example, suppose the message is THIS IS A CODED MESSAGE.
It is 23 characters long so two spaces are added at the end to make it 25 characters
long. The rows of 5 characters are:
1 2 3 4 5 T H I S I S A C O D E D M E S S A G E
The characters are sent one column at a time from left to right (a period indicates a space):
TIC.AHSOMGI.DEESAES...DS
Input
The input will consist of 5 commands to encode/decode a message.
The first line of each command is a character to indicate what your program
should do: D means decode, E means encode.
The second line of each command will contaibn the text to encode/decode.
Output
The decoded/encoded message for each test case.Sample Input
(note that spaces, not periods will appear in the input/output)D TIC.AHSOMGI.DEESAES...DS E MEET.ME.IN.THE.PARK.TONIGHT.AT.SEVEN
(and 3 more commands)
Sample Output
THIS.IS.A.CODED.MESSAGE.. MM.PTH.NEETAOTS.E.HRN.E.TIEKIAV..N..GTE.
All Submissions
Best Solutions
Point Value: 7
Time Limit: 2.00s
Memory Limit: 16M
Added: Sep 29, 2008
Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3
Comments (Search)
It works fine for the test cases and my own test cases, and I think my logic is correct.
TIC.AHSOMGI.DEESAES...DS
should be
TIC.AHSOMGI.DEESAES...DS.
Alright, I changed it back to show by default.
TIC.AHSOMGI.DEESAES...DS
shouldn't there be a . after?
TIC.AHSOMGI.DEESAES...DS.
so output for sample input should be
THIS IS A CODED MESSAGE ??
If there are any periods in the input, then they also stay as periods in the output.