#19467:


0905152640 (0000)

學校 : 臺北市私立延平高級中學
編號 : 83280
來源 : [210.71.78.242]
最後登入時間 :
2021-10-29 10:46:55
a565. 2.p&q的邂逅 -- 101學年度台北市資訊學科能力競賽 | From: [203.72.178.252] | 發表日期 : 2019-10-02 17:20

#include <iostream>
#include <iomanip>
#include <cmath>
#include <sstream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

using namespace std;
int main(int argc, char** argv) {
	
ios_base::sync_with_stdio(0);
    cin.tie(0);
	int n;
	scanf("%d\n",&n);
	while(n--){
		int p=0,pair=0;
		while(1){
			char c=getchar();
			if(c=='\n')
				break;
			if(c=='p')
				p++;
			else if(c=='q'&&p>0){
				p--;
				pair++;
			}
		}
		printf("%d\n",pair);
	}
	return 0;
}
 
ZeroJudge Forum