CF265A.Colorful Stones (Simplified Edition)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a sequence of colorful stones. The color of each stone is one of red, green, or blue. You are given a string s . The i -th (1-based) character of s represents the color of the i -th stone. If the character is "R", "G", or "B", the color of the corresponding stone is red, green, or blue, respectively.
Initially Squirrel Liss is standing on the first stone. You perform instructions one or more times.
Each instruction is one of the three types: "RED", "GREEN", or "BLUE". After an instruction c , if Liss is standing on a stone whose colors is c , Liss will move one stone forward, else she will not move.
You are given a string t . The number of instructions is equal to the length of t , and the i -th character of t represents the i -th instruction.
Calculate the final position of Liss (the number of the stone she is going to stand on in the end) after performing all the instructions, and print its 1-based position. It is guaranteed that Liss don't move out of the sequence.
输入格式
The input contains two lines. The first line contains the string s ( 1<=∣s∣<=50 ). The second line contains the string t ( 1<=∣t∣<=50 ). The characters of each string will be one of "R", "G", or "B". It is guaranteed that Liss don't move out of the sequence.
输出格式
Print the final 1-based position of Liss in a single line.
输入输出样例
输入#1
RGB RRR
输出#1
2
输入#2
RRRBGBRBBB BBBRR
输出#2
3
输入#3
BRRBGBRGRBGRGRRGGBGBGBRGBRGRGGGRBRRRBRBBBGRRRGGBBB BBRBGGRGRGBBBRBGRBRBBBBRBRRRBGBBGBBRRBBGGRBRRBRGRB
输出#3
15