-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.rockpaperscissors.py
40 lines (32 loc) · 918 Bytes
/
2.rockpaperscissors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# opponents moves => A: 'Rock', B: 'Paper', C: 'Scissors'
# own move => X: ('Rock', 1), Y: ('Paper', 2), Z: ('Scissors', 3)
opp_moves = {
'A': 'Rock', 'B': 'Paper', 'C': 'Scissors'
}
own_moves = {
'X': ('Rock', 1), 'Y': ('Paper', 2), 'Z': ('Scissors', 3)
}
def checkWin(opp_move, own_move):
if opp_moves[opp_move] == own_moves[own_move][0]:
return 3
elif opp_moves[opp_move] == 'Rock' and own_moves[own_move][0] == 'Scissors':
return 0
elif opp_moves[opp_move] == 'Paper' and own_moves[own_move][0] == 'Rock':
return 0
elif opp_moves[opp_move] == 'Scissors' and own_moves[own_move][0] == 'Paper':
return 0
else:
return 6
output = 0
while True:
try:
line = input().split()
if line[0] != 'stop':
# do something
output += checkWin(line[0], line[1])
output += own_moves[line[1]][1]
else:
print(output)
break
except EOFError:
break