abc173_b - Judge Status Summary
28 Jan 2021 — Tags: None
Click to show code.
using namespace std;
int main(void)
{
int n;
string stat;
map<string, int> counter;
cin >> n;
while (n--)
{
cin >> stat;
counter[stat]++;
}
cout << "AC x " << counter["AC"] << endl;
cout << "WA x " << counter["WA"] << endl;
cout << "TLE x " << counter["TLE"] << endl;
cout << "RE x " << counter["RE"] << endl;
return 0;
}