Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
Rock Paper Scissors Lizard Spock
You know the famous game: Rock Paper Scissors.
There is an extension of it: Rock Paper Scissors Lizard Spock.
In which the rules are similar. Any of the five can win
or lose against other four as seen in image on the right.
Question:
Write a program that is going read n games between
two people, and show the winner.
Note: If the two players show the
same hand, they both take 0.
Input specification
You will be given an integer (n) the number of plays where
0 ≤ n ≤ 1000. Then, in the following n lines, you will
be given two strings.
Output specification:
Show the score in the first line. Then, show one of the messages:
- 1: if the first player wins
- 2: if the second player wins
- Tie: if they have the same score
Sample Input I
3
Rock Paper
Lizard Rock
Spock Scissors
|
Sample Output I
1 2
2
|
Explanation:
- Paper covers Rock
- Rock crushes Lizard
- Spock smashes Scissors
Для отправки решений необходимо выполнить вход.
|