CF424A.Squats
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Pasha has many hamsters and he makes them work out. Today, n hamsters ( n is even) came to work out. The hamsters lined up and each hamster either sat down or stood up.
For another exercise, Pasha needs exactly hamsters to stand up and the other hamsters to sit down. In one minute, Pasha can make some hamster ether sit down or stand up. How many minutes will he need to get what he wants if he acts optimally well?
输入格式
The first line contains integer n ( 2<=n<=200 ; n is even). The next line contains n characters without spaces. These characters describe the hamsters' position: the i -th character equals 'X', if the i -th hamster in the row is standing, and 'x', if he is sitting.
输出格式
In the first line, print a single integer — the minimum required number of minutes. In the second line, print a string that describes the hamsters' position after Pasha makes the required changes. If there are multiple optimal positions, print any of them.
输入输出样例
输入#1
4 xxXx
输出#1
1 XxXx
输入#2
2 XX
输出#2
1 xX
输入#3
6 xXXxXx
输出#3
0 xXXxXx