100 atcoder#ABC173B. [ABC173B] Judge Status Summary
[ABC173B] Judge Status Summary
Score : 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 test cases.
For each test case (), you are given a string 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
- is
AC
,WA
,TLE
, orRE
.
Input
Input is given from Standard Input in the following format:
Output
Let , , , and be the numbers of test cases for which the verdict is AC
, WA
, TLE
, and RE
, respectively. Print the following:
AC x
WA x
TLE x
RE x
6
AC
TLE
AC
AC
WA
TLE
AC x 3
WA x 1
TLE x 2
RE x 0
We have , , , and 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