并无值得一提之处。先递归计算罗马数字的值,再用循环将值转化为标准写法,比较两者长度之差。 结果是$743$。
x=[1000,900,500,400,100,90,50,40,10,9,5,4,1]
y="M CM D CD C XC L XL X IX V IV I".split()
d=dict(zip(y,x))
def val(t):
if len(t)==0:
return 0
elif len(t)==1:
return d[t]
else:
i=0
while y[i] not in t:
i+=1
k=t.index(y[i])
return x[i]+val(t[k+len(y[i]):])-val(t[:k])
s=[]
with open("089_roman.txt") as f:
for line in f:
s.append(line.strip())
res=0
for c in s:
i,r,a=0,"",val(c)
while a>0:
r+=y[i]*(a//x[i])
a=a%x[i]
i+=1
res=res+len(c)-len(r)
print res
|