#abc218a. A - Weather Forecast
A - Weather Forecast
Score : points
问题描述
你将获得一个字符串 ,它表示从明天开始连续七天的天气预报。
如果 的第 个字符为 o
,则表示这七天中的第 天预报为晴天;若该字符为 x
,则表示预报为雨天。
请告诉我们第 天是否预报为晴天。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given a string , which represents a weather forecast for the seven days starting tomorrow.
The -th of those seven days is forecast to be sunny if the -th character of is o
, and rainy if that character is x
.
Tell us whether the -th day is forecast to be sunny.
Constraints
- is an integer between and (inclusive).
- is a string of length consisting of
o
andx
.
Input
Input is given from Standard Input in the following format:
Output
Print Yes
if the -th of the seven days starting tomorrow is forecast to be sunny, and No
if that day is forecast to be rainy.
Sample Input 1
4
oooxoox
Sample Output 1
No
The forecast for each of the seven days starting tomorrow is as follows: sunny, sunny, sunny, rainy, sunny, sunny, rainy.
In particular, the fourth day is forecast to be rainy.
Sample Input 2
7
ooooooo
Sample Output 2
Yes
update @ 2024/3/10 09:38:20