CF1051A.Vasya And Password
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vasya came up with a password to register for EatForces — a string s . The password in EatForces should be a string, consisting of lowercase and uppercase Latin letters and digits.
But since EatForces takes care of the security of its users, user passwords must contain at least one digit, at least one uppercase Latin letter and at least one lowercase Latin letter. For example, the passwords "abaCABA12", "Z7q" and "3R24m" are valid, and the passwords "qwerty", "qwerty12345" and "Password" are not.
A substring of string s is a string x=slsl+1…sl+len−1(1≤l≤∣s∣,0≤len≤∣s∣−l+1) . len is the length of the substring. Note that the empty string is also considered a substring of s , it has the length 0 .
Vasya's password, however, may come too weak for the security settings of EatForces. He likes his password, so he wants to replace some its substring with another string of the same length in order to satisfy the above conditions. This operation should be performed exactly once, and the chosen string should have the minimal possible length.
Note that the length of s should not change after the replacement of the substring, and the string itself should contain only lowercase and uppercase Latin letters and digits.
输入格式
The first line contains a single integer T ( 1≤T≤100 ) — the number of testcases.
Each of the next T lines contains the initial password s (3≤∣s∣≤100) , consisting of lowercase and uppercase Latin letters and digits.
Only T=1 is allowed for hacks.
输出格式
For each testcase print a renewed password, which corresponds to given conditions.
The length of the replaced substring is calculated as following: write down all the changed positions. If there are none, then the length is 0 . Otherwise the length is the difference between the first and the last changed position plus one. For example, the length of the changed substring between the passwords "abcdef" → "a7cdEf" is 4 , because the changed positions are 2 and 5 , thus (5−2)+1=4 .
It is guaranteed that such a password always exists.
If there are several suitable passwords — output any of them.
输入输出样例
输入#1
2 abcDCE htQw27
输出#1
abcD4E htQw27
说明/提示
In the first example Vasya's password lacks a digit, he replaces substring "C" with "4" and gets password "abcD4E". That means, he changed the substring of length 1.
In the second example Vasya's password is ok from the beginning, and nothing has to be changed. That is the same as replacing the empty substring with another empty substring (length 0).