/
Time Limit: 2 sec / Memory Limit: 1024 MiB
配点 : 200 点
問題文
高橋君は、プログラミングコンテスト AXC002 に参加しており、問題 A にコードを提出しました。
この問題には N 個のテストケースがあります。
各テストケース i (1\leq i \leq N) について、ジャッジ結果を表す文字列 S_i が与えられるので、ジャッジ結果が AC, WA, TLE, RE であったものの個数をそれぞれ求めてください。
出力形式は、出力欄を参照してください。
制約
- 1 \leq N \leq 10^5
- S_i は
AC,WA,TLE,REのいずれか
入力
入力は以下の形式で標準入力から与えられる。
N S_1 \vdots S_N
出力
AC, WA, TLE, RE のテストケースの個数をそれぞれ C_0, C_1, C_2, C_3 としたとき、以下の形式で出力せよ。
AC x C_0 WA x C_1 TLE x C_2 RE x C_3
入力例 1
6 AC TLE AC AC WA TLE
出力例 1
AC x 3 WA x 1 TLE x 2 RE x 0
ジャッジ結果が AC であったケースが 3 個、WA であったケースが 1 個、TLE であったケースが 2 個、RE であったケースが 0 個でした。
入力例 2
10 AC AC AC AC AC AC AC AC AC AC
出力例 2
AC x 10 WA x 0 TLE x 0 RE x 0
Score : 200 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 N test cases.
For each test case i (1\leq i \leq N), you are given a string S_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
- 1 \leq N \leq 10^5
- S_i is
AC,WA,TLE, orRE.
Input
Input is given from Standard Input in the following format:
N S_1 \vdots S_N
Output
Let C_0, C_1, C_2, and C_3 be the numbers of test cases for which the verdict is AC, WA, TLE, and RE, respectively. Print the following:
AC x C_0 WA x C_1 TLE x C_2 RE x C_3
Sample Input 1
6 AC TLE AC AC WA TLE
Sample Output 1
AC x 3 WA x 1 TLE x 2 RE x 0
We have 3, 1, 2, and 0 test case(s) for which the verdict is AC, WA, TLE, and RE, respectively.
Sample Input 2
10 AC AC AC AC AC AC AC AC AC AC
Sample Output 2
AC x 10 WA x 0 TLE x 0 RE x 0