wynner5

This program has been disqualified.


Authorsn3098
Submission date2011-06-09 05:26:53.907315
Rating0
Matches played2
Win rate0.0

Source code:

import random

if input=='':
   hy=["R","P","S"]
   count=0
if input=='R':
   ex=['R']*random.randint(1,5)
   hy.extend(ex)
elif input=='P':
   hy.extend(['S'])
else:
   hy.extend(['P'])
output = random.choice(hy)
if count %7 ==0:
   hy=["R","P","S"]
   hy.append(input)
count +=1