100 #ABC173B. [ABC173B] Judge Status Summary

[ABC173B] Judge Status Summary

Score : 200200 points

Problem Statement

Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.

The problem has NN test cases.

For each test case ii (1iN1\leq i \leq N), you are given a string SiS_i representing the verdict for that test case. Find the numbers of test cases for which the verdict is AC, WA, TLE, and RE, respectively.

See the Output section for the output format.

Constraints

  • 1N1051 \leq N \leq 10^5
  • SiS_i is AC, WA, TLE, or RE.

Input

Input is given from Standard Input in the following format:

NN

S1S_1

\vdots

SNS_N

Output

Let C0C_0, C1C_1, C2C_2, and C3C_3 be the numbers of test cases for which the verdict is AC, WA, TLE, and RE, respectively. Print the following:

AC x C0C_0

WA x C1C_1

TLE x C2C_2

RE x C3C_3

6
AC
TLE
AC
AC
WA
TLE
AC x 3
WA x 1
TLE x 2
RE x 0

We have 33, 11, 22, and 00 test case(s) for which the verdict is AC, WA, TLE, and RE, respectively.

10
AC
AC
AC
AC
AC
AC
AC
AC
AC
AC
AC x 10
WA x 0
TLE x 0
RE x 0