Badly Weighted6

This program has been disqualified.


AuthorAntiDog
Submission date2018-08-08 09:42:36.273080
Rating3408
Matches played35
Win rate31.43

Source code:

if input == "":
	output = "P"
	oponentmoves = ""
else:
	oponentmoves += input
	if(len(oponentmoves) > 75):
		oponentmoves = oponentmoves[:75]
	r = 0.0
	p = 0.0
	s = 0.0
	for i in range(1,len(oponentmoves)):
		searchsequence = oponentmoves[len(oponentmoves)-i:]
		nextresults = oponentmoves.split(searchsequence)
		k = 0
		weight = 1.0
		for res in nextresults:
			n = 1
			k+=1
			weight = (len(oponentmoves))/float(max(len(res),0.99))

			if k == 1:
				continue
			if res == "": 
				res = searchsequence
				n = len(",".join(oponentmoves.split(searchsequence)[1:]))
			if res[0] == "R":
				r += n *weight
			elif res[0] == "P":
				p += n *weight
			elif res[0] == "S":
				s += n *weight
			else:
				continue
	if r >= p and r >= s:
		output = "P"
	elif p >= s and p >= r:
		output = "S"
	else:
		output = "R"