在瘋狂程設是錯誤 但在這邊是對
而且我看測資有個 1 30 答案說是Jolly 我問號
#include <iostream>
#include <math.h>
using namespace std;
int main(){
int n;
while(cin>>n){
int p[n]={};
int flag=0;
int count[n]={0};
for(int i=0;i<n;i++){
cin>>p[i];
if(i>0){
int temp=abs(p[i]-p[i-1]);
count[temp]++;
if(temp==0||temp>=n){
flag=0;
}
else if(count[temp]>1){
flag=0;
}
else{
flag=1;
}
}
}
if(flag==1){
cout<<"Jolly"<<endl;
}
else if(flag==0){
cout<<"Not jolly"<<endl;
}
}
return 0;
}