#abc295a. A - Probably English
A - Probably English
Score : points
问题描述
给定包含小写英文字母的 个字符串 。
如果其中任意一个或多个字符串等于 and、not、that、the 或 you,则输出 Yes;否则,输出 No。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given strings consisting of lowercase English letters.
If one or more of these strings equal and, not, that, the, or you, then print Yes; otherwise, print No.
Constraints
- is an integer between and , inclusive.
- ( is the length of .)
- consists of lowercase English letters.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
10
in that case you should print yes and not no
Sample Output 1
Yes
We have, for instance, you, so you should print Yes.
Sample Input 2
10
in diesem fall sollten sie no und nicht yes ausgeben
Sample Output 2
No
None of the strings equals any of and, not, that, the, and you.
update @ 2024/3/10 12:15:30