1498 : 比特鹰的MVP
时间限制Time Limit
1
秒Sec
内存限制Memory Limit
1024
兆MB
提交次数Submitted
0 次Times
通过次数Solved
0 次Times
标准评测 Standard
从标准输入读入,结果写到标准输出。评测将输出拆成 token,与标准答案逐项比较,不按整段逐字节比对。
Read from standard input and write to standard output. The judge splits the output into tokens and compares them with the official answer; it does not compare raw bytes.
| 比对Compare | token 相同即通过。中间的空格、制表符、换行可多可少。Matching tokens pass. Extra spaces, tabs, or newlines between them are ignored. |
|---|---|
| 不同则错Differs | token 个数或内容不同即错误。23 与 2 3、02 与 2、2.0 与 2 均视为不同。A different token count or value is wrong. 23 vs 2 3, 02 vs 2, and 2.0 vs 2 all differ. |
| 输入Input | 标准输入,格式见题面。Standard input; format as in the statement. |
| 输出Output | 标准输出。Standard output. |
题目描述Description
比特鹰社区的 MVP 评选引起了热议。小比和小特都是社区的活跃成员,但他们的评分却有所不同。小特的评分是 13.0 Carry 局,而小比被一些人认为是躺赢狗,评分 3.0 。但小比为社区做了许多非成绩的贡献,因此也有人认为小比也是 MVP 。
作为评分员,你需要处理 N(1 \leq N \leq 2 \times 10 ^ 5) 个人的评价,判断他们给予小比或小特的评价。 A 类人给小特的评价是 MVP ,给小比的评价是躺赢狗; B 类人无论评价谁都是 MVP
输入格式Input
第一行给出一个整数 N,表示人数
接下来 N 行,每行给出一个字符 c 和 一个字符串 S
c 为 A 或者 B
S 为 xiaote 或者 xiaobi
输出格式Output
一共 N 行,每行输出你根据信息给出对小比或者小特的评价
样例Sample
出题Author
lxh