测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15709. Codeforces Checking

编程题 普及/提高-

题目描述

Given a lowercase Latin character (letter), check if it appears in the string $\texttt{codeforces}$ .

输入格式

The first line of the input contains an integer $t$ ( $1 \leq t \leq 26$ ) — the number of test cases.

The only line of each test case contains a character $c$ — a single lowercase Latin character (letter).

输出格式

For each test case, output "YES" (without quotes) if $c$ satisfies the condition, and "NO" (without quotes) otherwise.

You can output the answer in any case (for example, the strings "yEs", "yes", "Yes" and "YES" will be recognized as a positive answer).

输入输出样例

输入 #1
10
a
b
c
d
e
f
g
h
i
j
输出 #1
NO
NO
YES
YES
YES
YES
NO
NO
NO
NO
上一题 去做题 下一题