n=int(input()) b=list(map(int,input().split())) def gcd(a,b): if a%b == 0: return b else: return gcd(b,a%b) res=0 def dfs(t): global res,b if len(b)<1: return for x in b: if len(t)==0: t.append(x) else: flag=0 for y in t: if gcd(x,y)!=1: flag=1 break if flag==0: t.append(x) #print(t) res+=1 for x in t: b.remove(x) dfs([]) dfs([]) print(res)
0.0分
0 人评分
简单的a+b (C语言代码)浏览:595 |
C语言训练-排序问题<1> (C++代码)浏览:632 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:610 |
A+B for Input-Output Practice (IV) (C++代码)浏览:713 |
回文数(一) (C语言代码)浏览:809 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:956 |
用筛法求之N内的素数。 (C语言代码)浏览:685 |
字符逆序 (C语言代码)浏览:706 |
1012题解浏览:938 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |