题库练习 The Useless Toy
← 上一题 下一题 →

A11157 | The Useless Toy

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

![](/uploads/acgo/image/46db48e21e983d18_2ad98e464aad.jpeg)Walking through the streets of Marshmallow City, Slastyona have spotted some merchants selling a kind of useless toy which is very popular nowadays – caramel spinner! Wanting to join the craze, she has immediately bought the strange contraption.

Spinners in Sweetland have the form of V-shaped pieces of caramel. Each spinner can, well, spin around an invisible magic axis. At a specific point in time, a spinner can take 4 positions shown below (each one rotated 90 degrees relative to the previous, with the fourth one followed by the first one):

![](/uploads/acgo/image/3a527bcb1b31d5ec_c92d74ae357c.jpeg)After the spinner was spun, it starts its rotation, which is described by a following algorithm: the spinner maintains its position for a second then majestically switches to the next position in clockwise or counter-clockwise order, depending on the direction the spinner was spun in.

Slastyona managed to have spinner rotating for exactly $n$ seconds. Being fascinated by elegance of the process, she completely forgot the direction the spinner was spun in! Lucky for her, she managed to recall the starting position, and wants to deduct the direction given the information she knows. Help her do this.

输入格式

There are two characters in the first string – the starting and the ending position of a spinner. The position is encoded with one of the following characters: v (ASCII code $118$ , lowercase v), < (ASCII code $60$ ), ^ (ASCII code $94$ ) or > (ASCII code $62$ ) (see the picture above for reference). Characters are separated by a single space.

In the second strings, a single number $n$ is given ( $0<=n<=10^{9}$ ) – the duration of the rotation.

It is guaranteed that the ending position of a spinner is a result of a $n$ second spin in any of the directions, assuming the given starting position.

输出格式

Output cw, if the direction is clockwise, ccw – if counter-clockwise, and undefined otherwise.

输入输出样例

输入 #1
^ >
1
输出 #1
cw
输入 #2
< ^
3
输出 #2
ccw
输入 #3
^ v
6
输出 #3
undefined
C++ 编辑器
输入
输出