CF81A.Plug-in

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp thinks about the meaning of life very often. He does this constantly, even when typing in the editor. Every time he starts brooding he can no longer fully concentrate and repeatedly presses the keys that need to be pressed only once. For example, instead of the phrase "how are you" he can type "hhoow aaaare yyoouu".

Polycarp decided to automate the process of correcting such errors. He decided to write a plug-in to the text editor that will remove pairs of identical consecutive letters (if there are any in the text). Of course, this is not exactly what Polycarp needs, but he's got to start from something!

Help Polycarp and write the main plug-in module. Your program should remove from a string all pairs of identical letters, which are consecutive. If after the removal there appear new pairs, the program should remove them as well. Technically, its work should be equivalent to the following: while the string contains a pair of consecutive identical letters, the pair should be deleted. Note that deleting of the consecutive identical letters can be done in any order, as any order leads to the same result.

输入格式

The input data consists of a single line to be processed. The length of the line is from 11 to 21052·10^{5} characters inclusive. The string contains only lowercase Latin letters.

输出格式

Print the given string after it is processed. It is guaranteed that the result will contain at least one character.

输入输出样例

  • 输入#1

    hhoowaaaareyyoouu
    

    输出#1

    wre
  • 输入#2

    reallazy
    

    输出#2

    rezy
  • 输入#3

    abacabaabacabaa
    

    输出#3

    a
首页