Champ v3

Authorstrangepool
Submission date2013-10-02 13:31:09.299013
Rating4062
Matches played643
Win rate39.97

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

Source code:

import random

if not input:
    output = 'RPS'[random.randrange(3)]
else:
    output = 'RPS'[('RPS'.index(input) + 1) % 3]