B - Acrostic Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 200200

問題文

小文字のアルファベットからなる文字列 SS が与えられます。 この文字列を ww 文字ごとに改行したときに、各行の先頭の文字を上から順番につなげて得られる文字列を出力してください。

制約

  • 1wS10001\leq w\leq |S| \leq 1000
  • SS は小文字のアルファベットのみからなる
  • ww は整数

入力

入力は以下の形式で標準入力から与えられる。

SS
ww

出力

答えの文字列を 11 行に出力してください。


入力例 1Copy

Copy
abcdefgh
3

出力例 1Copy

Copy
adg

abcdefgh33 文字ごとに改行すると、

abc
def
gh

となります。これらの行の先頭の文字を上から順に読むと adg となります。


入力例 2Copy

Copy
lllll
1

出力例 2Copy

Copy
lllll

入力例 3Copy

Copy
souuundhound
2

出力例 3Copy

Copy
suudon

Score : 200200 points

Problem Statement

You are given a string SS consisting of lowercase English letters. We will write down this string, starting a new line after every ww letters. Print the string obtained by concatenating the letters at the beginnings of these lines from top to bottom.

Constraints

  • 1wS10001 \leq w \leq |S| \leq 1000
  • SS consists of lowercase English letters.
  • ww is an integer.

Input

Input is given from Standard Input in the following format:

SS
ww

Output

Print the desired string in one line.


Sample Input 1Copy

Copy
abcdefgh
3

Sample Output 1Copy

Copy
adg

When we write down abcdefgh, starting a new line after every three letters, we get the following:

abc
def
gh

Concatenating the letters at the beginnings of these lines, we obtain adg.


Sample Input 2Copy

Copy
lllll
1

Sample Output 2Copy

Copy
lllll

Sample Input 3Copy

Copy
souuundhound
2

Sample Output 3Copy

Copy
suudon


2025-04-04 (Fri)
11:57:39 +00:00