#arc087b. [arc087_b]FT Robot
[arc087_b]FT Robot
Problem Statement
A robot is put at the origin in a two-dimensional plane. Initially, the robot is facing in the positive -axis direction.
This robot will be given an instruction sequence . consists of the following two kinds of letters, and will be executed in order from front to back.
F
: Move in the current direction by distance .T
: Turn degrees, either clockwise or counterclockwise.
The objective of the robot is to be at coordinates after all the instructions are executed. Determine whether this objective is achievable.
Constraints
- consists of
F
andT
. - and are integers.
Input
Input is given from Standard Input in the following format:
Output
If the objective is achievable, print Yes
; if it is not, print No
.
Sample Input 1
FTFFTFFF
4 2
Sample Output 1
Yes
The objective can be achieved by, for example, turning counterclockwise in the first T
and turning clockwise in the second T
.
Sample Input 2
FTFFTFFF
-2 -2
Sample Output 2
Yes
The objective can be achieved by, for example, turning clockwise in the first T
and turning clockwise in the second T
.
Sample Input 3
FF
1 0
Sample Output 3
No
Sample Input 4
TF
1 0
Sample Output 4
No
Sample Input 5
FFTTFF
0 0
Sample Output 5
Yes
The objective can be achieved by, for example, turning counterclockwise in the first T
and turning counterclockwise in the second T
.
Sample Input 6
TTTT
1 0
Sample Output 6
No