Algorithm


B. Personalized Cup
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup with the handle of the winner.

The nameplate is to be rectangular and the text on it will be printed as a table of several rows and columns. Having some measurements done, the organizers have found out that the number a of rows cannot be greater than 55 while the number b of columns cannot exceed 2020. Every cell of the table will contain either an asterisk («*») or a letter of user's handle.

Furthermore, the organizers want the rows of the table to be uniform, which means that the number of asterisks used in different rows should differ by at most one (i.e. you can't have two asterisks in the first row and none in the second). The main goal, however, is to obtain the winner's handle precisely when reading the table from top to bottom and from left to right in every row (skipping asterisks).

The organizers want for the nameplate to have as few rows as possible and among all valid tables with the minimum number of rows they want to choose the one that has the minimum number of columns.

The winner is not yet determined so your task is to write a program that, given a certain handle, generates the necessary table.

Input

The only line contains one string s (1|s|1001≤|�|≤100), comprised of uppercase and lowercase Latin letters,  — the handle of the winner.

Output

In the first line output the minimum number a of rows in the table and the minimum number b of columns in an optimal table with rows.

The following a lines should contain b characters each  — any valid table.

Examples
input
Copy
tourist
output
Copy
1 7
tourist
input
Copy
MyNameIsLifeIAmForeverByYourSideMyNameIsLife
output
Copy
3 15
MyNameIsLifeIAm
ForeverByYourSi
deMyNameIsL*ife

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

string s;

int main() {
  cin >> s;
  int len = s.length();

  int row = ceil(len / 20.0);
  int col;
  for(int i = 1; i <= 20; ++i)
    if(row * i >= len) {
      col = i;
      break;
    }

  int ast = row * col - len;
  int ech = ast / row;
  int rem = ast % row;

  vector<int> asts;
  for(int i = 0, cur; i < row; ++i) {
    cur = ech;
    if(rem > 0)
      ++cur, --rem;
    asts.push_back(cur);
  }

  printf("%d %d\n", row, col);
  int cnt = 0;
  for(int i = 0; cnt < len && i < row; ++i, puts("")) {
    for(int j = 0; cnt < len && j < col - asts[i]; ++j) {
      printf("%c", s[cnt]);
      ++cnt;
    }
    for(int j = 0; j < asts[i]; ++j)
      printf("*");
  }

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
tourist

Output

x
+
cmd
1 7
tourist
Advertisements

Demonstration


Codeforces Solution-B. Personalized Cup-Solution in C, C++, Java, Python ,Personalized Cup,Codeforces Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+