-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcake.cpp
88 lines (77 loc) · 1.25 KB
/
cake.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include <bits/stdc++.h>
using namespace std;
bool isPrime(int no){
for (int i = 2; i <= sqrt(no); ++i)
{
if(no%i==0){
return false;
}
}
return true;
}
bool isRepeat(int n){
int flag=0;
while (n%2 == 0)
{
if(flag){
return true;
}
printf("%d ", 2);
n = n/2;
flag=1;
}
for (int i = 3; i <= sqrt(n); i = i+2)
{
flag=0;
while (n%i == 0)
{
if(flag){
return true;
}
printf("%d ", i);
n = n/i;
flag=1;
}
}
if (n > 2)
printf ("%d ", n);
return false;
}
int main(){
int t;
cin>>t;
while(t--){
int n,count=0,flag;
cin>>n;
int a[n];
for (int i = 0; i < n; ++i)
{
cin>>a[i];
}
for (int i = 0; i < n-1; ++i)
{
int visited[100000]={0};
flag=0;
for (int j = i; j < n; ++j)
{
if((isPrime(a[j]) && a[j]!=1) ){
if(visited[a[j]]){
//cout<<"j="<<j<<"a[j]="<<a[j]<<" ";
flag=1;
}
visited[a[j]]=1;
}
else if((isRepeat(a[j]) && a[j]!=1)){
flag=1;
visited[a[j]]=1;
}
if(flag){
count++;
}
}
}
//cout<<endl;
long long int total=(((n)*(n+1))/2);
cout<<total-count<<endl;
}
}