A12137 | Vasya And Password
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 = s_l s_{l + 1} \dots s_{l + len - 1} (1 \le l \le |s|, 0 \le len \le |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.
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 = s_l s_{l + 1} \dots s_{l + len - 1} (1 \le l \le |s|, 0 \le len \le |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 \le T \le 100$ ) — the number of testcases.
Each of the next $T$ lines contains the initial password $s~(3 \le |s| \le 100)$ , consisting of lowercase and uppercase Latin letters and digits.
Only $T = 1$ is allowed for hacks.
Each of the next $T$ lines contains the initial password $s~(3 \le |s| \le 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" $\rightarrow$ "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.
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" $\rightarrow$ "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).
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).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted