PAT-A 1093. Count PAT's

The string APPAPT contains two PAT’s as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed by the 3rd, the 4th, and the 6th characters.

Now given any string, you are supposed to tell the number of PAT’s contained in the string.

Input Specification:

Each input file contains one test case. For each case, there is only one line giving a string of no more than 105 characters containing only P, A, or T.

Output Specification:

For each test case, print in one line the number of PAT’s contained in the string. Since the result may be a huge number, you only have to output the result moded by 1000000007.

Sample Input:

APPAPT

Sample Output:

2

程序代码:

#include<stdio.h>
int main()
{
    char c;
    int countA=0,countP=0,count=0,countPA=0;
    while((c=getchar())!='\n')
    {
        if(c=='P')
        {
            countP++;//P的个数
        }
        else if(c=='A')
        {
            countPA=countPA+countP;//countPA是PA组合的个数
        }
        else if(c=='T')
        {
            count=(count+countPA)%1000000007;
        }
    }
    printf("%d",count);
    return 0;
}
全部评论

相关推荐

11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务