PAT-A 1093. Count PAT's

来源:互联网 发布:网络语大虾是什么意思 编辑:程序博客网 时间:2024/05/28 20:19

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;}
0 0