atcoder#MSOLUTIONS2019B. Sumo
Sumo
Score : points
Problem Statement
Takahashi is competing in a sumo tournament. The tournament lasts for days, during which he performs in one match per day. If he wins or more matches, he can also participate in the next tournament.
The matches for the first days have finished.
You are given the results of Takahashi's matches as a string consisting of o
and x
.
If the -th character in is o
, it means that Takahashi won the match on the -th day; if that character is x
, it means that Takahashi lost the match on the -th day.
Print YES
if there is a possibility that Takahashi can participate in the next tournament, and print NO
if there is no such possibility.
Constraints
- is a string of length consisting of
o
andx
.
Input
Input is given from Standard Input in the following format:
Output
Print YES
if there is a possibility that Takahashi can participate in the next tournament, and print NO
otherwise.
oxoxoxoxoxoxox
YES
Takahashi has wins and losses before the last match. If he wins that match, he will have wins.
xxxxxxxx
NO