提交时间:2022-08-03 17:02:01
运行 ID: 56932
#include<bits/stdc++.h> using namespace std; int n; int d,g,z; int main(){ cin>>n; while(n--){ string s; cin>>s; if(s[1]=='D') d++; if(s[1]=='G') g++; if(s[1]=='Z') z++; if(s[3]=='D') d--; if(s[3]=='G') g--; if(s[3]=='Z') z--; } cout<<d<<endl<<g<<endl<<z; return 0; }