问题描述
对于以下这些数(6 行,每行6个,共36个),请问约数数最多的是哪个?(如果有多个,请回答出现最早的那个)
393353 901440 123481 850930 423154 240461 373746 232926 396677 486579 744860 468782 941389 777714 992588 343292 385198 876426 483857 241899 544851 647930 772403 109929 882745 372491 877710 340000 659788 658675 296521 491295 609764 718967 842000 670302
import os
import sys
import math
# 请在此输入您的代码
def yueshu(n):cnt=0for i in range(1,int(math.sqrt(n))+1):if n%i==0:cnt+=2 #n,n/i都是约数,2x5=10,2,5约数if math.sqrt(n)== int(math.sqrt(n)):cnt-=1 #完全平方约数重复 4x4=16 两个4return cnts="""393353 901440 123481 850930 423154 240461
373746 232926 396677 486579 744860 468782
941389 777714 992588 343292 385198 876426
483857 241899 544851 647930 772403 109929
882745 372491 877710 340000 659788 658675
296521 491295 609764 718967 842000 670302"""num=[]
s=s.split()for i in s:num.append(yueshu(int(i)))print(s[num.index(max(num))])