一共只有$10!=3628800$种情况,直接暴力枚举即得结果$6531031914842725$。
import itertools
m=""
for d in itertools.permutations([1,2,3,4,5,6,7,8,9,10]):
c=2*sum(d[:5])+sum(d[5:])
if c in [70,75,80,85,90,95]:
z=c/5
if d[5]+d[0]+d[1]==z and d[6]+d[1]+d[2]==z and d[7]+d[2]+d[3]==z and d[8]+d[3]+d[4]==z and d[9]+d[4]+d[0]==z:
i=d.index(min(d[5:]))
s=""
for j in range(i,i+5):
k=j if j < 10 else j-5
s=s+str(d[k])+str(d[k-5])+str(d[(k-4)%5])
m=max(m,s)
print m
|