CF746B.Decoding
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the two middle letters. In the following examples, the median letter is highlighted: contest, info. If the word consists of single letter, then according to above definition this letter is the median letter.
Polycarp encodes each word in the following way: he writes down the median letter of the word, then deletes it and repeats the process until there are no letters left. For example, he encodes the word volga as logva.
You are given an encoding s of some word, your task is to decode it.
输入格式
The first line contains a positive integer n ( 1<=n<=2000 ) — the length of the encoded word.
The second line contains the string s of length n consisting of lowercase English letters — the encoding.
输出格式
Print the word that Polycarp encoded.
输入输出样例
输入#1
5 logva
输出#1
volga
输入#2
2 no
输出#2
no
输入#3
4 abba
输出#3
baba
说明/提示
In the first example Polycarp encoded the word volga. At first, he wrote down the letter l from the position 3 , after that his word looked like voga. After that Polycarp wrote down the letter o from the position 2 , his word became vga. Then Polycarp wrote down the letter g which was at the second position, the word became va. Then he wrote down the letter v, then the letter a. Thus, the encoding looked like logva.
In the second example Polycarp encoded the word no. He wrote down the letter n, the word became o, and he wrote down the letter o. Thus, in this example, the word and its encoding are the same.
In the third example Polycarp encoded the word baba. At first, he wrote down the letter a, which was at the position 2 , after that the word looked like bba. Then he wrote down the letter b, which was at the position 2 , his word looked like ba. After that he wrote down the letter b, which was at the position 1 , the word looked like a, and he wrote down that letter a. Thus, the encoding is abba.