Author | Diego Souza |
Submission date | 2012-12-08 22:54:39.230897 |
Rating | 4940 |
Matches played | 735 |
Win rate | 48.44 |
Use rpsrunner.py to play unranked matches on your computer.
output = "R"
if input == "":
rr = rp = rs = 0
pr = pp = ps = 0
sr = sp = ss = 0
elif input == "R":
if rr > rp and rr > rs:
output = "P"
elif rp > rs:
output = "S"
else:
output = "R"
if last == "R":
rr += 1
elif last == "P":
pr += 1
elif last == "S":
sr += 1
elif input == "P":
if pr > pp and pr > ps:
output = "P"
elif pp > ps:
output = "S"
else:
output = "R"
if last == "R":
rp += 1
elif last == "P":
pp += 1
elif last == "S":
sp += 1
elif input == "S":
if sr > sp and sr > ss:
output = "P"
elif sp > ss:
output = "S"
else:
output = "R"
if last == "R":
rs += 1
elif last == "P":
ps += 1
elif last == "S":
ss += 1
last = input