Problem2541--字符串逆序练习

2541: 字符串逆序练习

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 92  Solved: 60
[Status] [Submit] [Creator:]

Description

输入一个单词,以5个为节点进行逆序,如果最后的字符不足5个,就按具体数量逆序

Input

一个单词,长度不超过255,不包含空格

Output

以5个为节点进行逆序后的字符串

Sample Input Copy

helloworldiloveutoo

Sample Output Copy

ollehdlrowevoliootu

Source/Category