PivotOJ

Evolving Etymology

시간 제한: 1000ms메모리 제한: 1024MB출처: NWERC 2024BOJ 32893

문제

Eelco has recently started to gain interest in the field that studies the origin of words: etymology. He especially likes how words can evolve in many different ways: pronunciation changes over time, words are borrowed from different languages, and the meaning of words can change based on culture. Eelco is eager to attend the Networking With Etymologists: Revolutionary Conference for the first time ever. To make a good first impression, he is going to present a completely new method to make new words from existing words.

To make a new word from an existing word ss, Eelco proposes to take every second letter of s+ss+s, starting with the first letter. For example, applying this method to the word "etymology" would result in "eyooytmlg". Of course, to design even more words, this process can be repeated many times. Eelco would like to prepare a list of new words to present at the conference, so he writes a program that applies his method some predetermined number of times.

입력

The input consists of:

  • One line with two integers nn and kk (1n1051 \leq n \leq 10^5, 1k10181 \leq k \leq 10^{18}), the length of the original word and the number of times to apply the method.
  • One line with a string ss of length nn, only consisting of English lowercase letters (a-z), the original word.

출력

Output the resulting word after applying the method to the original word kk times.

예제

예제 1

입력
9 1
etymology
출력
eyooytmlg

예제 2

입력
4 1
word
출력
wrwr

예제 3

입력
5 1000000000000000000
delft
출력
delft

예제 4

입력
5 5
eceol
출력
eelco
코드를 제출하려면 로그인하세요.