-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10038 Jolly Jumpers.cpp
51 lines (51 loc) · 1.17 KB
/
10038 Jolly Jumpers.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
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#define iter(a,b,c,d) for(a = b; a < c; a+=d)
#define ited(a,b,c,d) for(a = b; a > c; a-=d)
#define seto(a,n,x) for(int i = 0; i < n; i++) a[i] = x
#define li long int
#define uli unsigned li
#define ll long li
#define ull unsigned ll
#define si(a) scanf("%d",&a)
#define sli(a) scanf("%I32d",&a)
#define sll(a) scanf("%I64d",&a)
#define sf(a) scanf("%f",&a)
#define slf(a) scanf("%lf",&a)
#define PI 3.1415926
using namespace std;
int main()
{
int t;
while(si(t)!=EOF)
{
if(t == 0) puts("Jolly");
else
{
bool nums[t];seto(nums,t,false);
nums[0] = true;
int t1,t2;
int i = 0;
si(t1);
iter(i,0,t-1,1)
{
si(t2);
nums[abs(t2-t1)] = true;
t1 = t2;
}
bool jolly = true;
iter(i,0,t,1) if(!nums[i]) jolly = false;
if(jolly) puts("Jolly");
else puts("Not jolly");
}
}
return 0;
}