题库练习 Decoding
← 上一题 下一题 →

A10732 | Decoding

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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
C++ 编辑器
输入
输出