SecondTest51213

AuthorBot
Submission date2013-05-12 22:20:11.599386
Rating5160
Matches played703
Win rate48.51

Use rpsrunner.py to play unranked matches on your computer.

Source code:

import random

##using x**4 instead of x**3
##see FirstTest51213

if input == "":
    rockCount = paperCount = scissorsCount = 1 #to avoid divide by 0
elif input == "R":
	rockCount += 1
elif input == "P":
	paperCount += 1
elif input == "S":
	scissorsCount += 1

pRock = rockCount**4
pPaper = paperCount**4
pScissors = scissorsCount**4

total = float(pRock + pPaper + pScissors)

probRock = pRock/total
probPaper = pPaper/total
probScissors = pScissors/total

prob = random.random()

if prob < probRock:
	output = "P" # paper beats rock
elif prob < (probPaper + probRock):
	output = "S" # scissors beats paper
else:
	output = "R" # rock beats scissors