This program has been disqualified.
Author | Byron Knoll |
Submission date | 2011-05-28 21:28:43.216447 |
Rating | 6434 |
Matches played | 4022 |
Win rate | 68.62 |
import random
if input=="":
matchHistory = ""
else:
matchHistory += input + lastMove
prediction = random.choice(["R","P","S"])
index = 1
longestMatch = 0
limit = 30
while index < len(matchHistory)-1:
index2 = index
index3 = len(matchHistory)-1
length = 0
while index2 >= 0:
if matchHistory[index2] != matchHistory[index3]:
break
index2 -= 1
index3 -= 1
length += 1
if length > limit:
break
if length > longestMatch:
longestMatch = length
prediction = matchHistory[index+1]
if length > limit:
break
index += 2
output = {'R':'P', 'P':'S', 'S':'R'}[prediction]
lastMove = output