本文整理汇总了Python中Euler.highest_common_factor方法的典型用法代码示例。如果您正苦于以下问题:Python Euler.highest_common_factor方法的具体用法?Python Euler.highest_common_factor怎么用?Python Euler.highest_common_factor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Euler
的用法示例。
在下文中一共展示了Euler.highest_common_factor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: range
# 需要导入模块: import Euler [as 别名]
# 或者: from Euler import highest_common_factor [as 别名]
# Problem 69: totient maximum
import time, Euler
t1 = time.clock()
answer = 1
n = 0
for x in range(2, 10001):
rp_counter = 1
for y in range(2,x):
if Euler.highest_common_factor(x,y) == 1:
rp_counter += 1
ratio = x/rp_counter
if ratio > answer:
answer = ratio
n = x
print(n, " has the largest ratio: ", answer)
t2 = time.clock()
print("Execution time: ", str(t2-t1)[:5])