Alice and Bob are playing the two-player computer game called ALSDJFKSND. In this game, there is a ball on the screen. Initially, the ball is located at x metres westward from the goal. Its initial velocity is v metres per second eastward, and its acceleration is zero for the first one second. At t seconds after the game begins, where t is a positive integer,
Each player should press either A or B immediately at their turn.
A is pressed, then the ball's acceleration is set to zero for one second from that time.B is pressed, then the ball's acceleration is set to a metres per second squared eastward for one second from that time.A player loses and the game finishes when the ball is located at the goal or in the east of the goal at their turn. Assume that each player uses their optimal strategy to win. You want to help Alice win. Determine whether Alice can win or not, possibly depending on Alice's first move.
Write a function ALSDJFKSND:
input parameter: three int-type objects whose values are x, v, and a, respectively, where 0\<v\<x≤100 and 0\<a≤100
return value: the str-type object of length 1
A if Alice can win only when Alice presses A at their first turn.B if Alice can win only when Alice presses B at their first turn.C if Alice can win in both cases.D if Alice can win in neither case.