CCC '09 J4 - Signage

View as PDF

Submit solution

Points: 7
Time limit: 1.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2009 Stage 1, Junior #4

The student council at Central Canada Collegiate is preparing signs with the message WELCOME TO CCC GOOD LUCK TODAY on various walls around the school. A sign is wide enough to hold w characters on each row, including spaces, as befits the wall to be decorated.

Here is how the words are put onto a sign. First, as many words as possible are placed on the first line, without exceeding the w character limit. The first word in the line begins in the leftmost position. If there is more than one word in the line, the last word ends in the rightmost position. Extra spaces are inserted into the gaps between the words so that the gaps are as similar as possible. If the gaps cannot be made equal, all of the larger gaps should appear to the left of the smaller ones. Subsequent lines are constructed in the same way.

Your program will read the available width w and output the sign on the screen. Use the . character to indicate a space.

Constraints

You may assume that w \ge 7.

Sample Input 1

15

Sample Output 1

WELCOME..TO.CCC
GOOD.LUCK.TODAY

Sample Input 2

26

Sample Output 2

WELCOME..TO..CCC.GOOD.LUCK
TODAY.....................

Comments


  • 0
    ryland_cao  commented on Feb. 12, 2024, 3:55 a.m.

    i WA'd until i changed from println to print 😭😭😭


  • 41
    Ray_chel71  commented on Jan. 18, 2021, 1:45 a.m. edit 2

    Note: your output should end with a newline

    ^At least, if you're using something like System.out.print() (Proof: code WA'd until I added a System.out.println(); after everything)


    • 19
      Jinx  commented on Feb. 5, 2021, 9:14 p.m.

      why did he get downvoted xD

      I did that and it fixed my code