2 条题解

  • 0
    @ 2024-10-11 18:55:54
    /*****************************************
    备注:
    ******************************************/
    #include <queue>
    #include <math.h>
    #include <stack>
    #include <stdio.h>
    #include <iostream>
    #include <vector>
    #include <iomanip>
    #include <string.h>
    #include <algorithm>
    using namespace std;
    #define LL long long
    const int N = 1e5 + 10;
    const int INF = 0x3f3f3f3f;
    int a[N];
    int main()
    {
    	int n ;
    	while(cin >> n)
    	{
    		memset(a,0,sizeof(a));//string.h  初始化数组
    		int pre;
    		cin >> pre;
    		int now;
    		for(int i = 1 ; i < n ; i++)
    		{
    			cin >> now;
    			int s = now - pre;
    			if(s < 0)
    				s = s * -1;
    			a[s] = 1;
    			pre = now;
    		}
    		int flag = 1;
    		for(int i = 1 ; i < n ; i++)
    		{
    			if(a[i] == 0)
    			{
    				flag=  0;
    				break;
    			}
    		}
    		if(flag == 1)
    			cout << "Jolly\n";
    		else 
    			cout << "Not jolly\n";
    	}
    	return 0;
    }
    

    信息

    ID
    1024
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    424
    已通过
    92
    上传者