21148_JollyJumpers

2022-5-16 18:18| 发布者: Hocassian| 查看: 37| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-3-89504930438500-Problem List-采集的数据-后羿采集器.html

Pro.ID

21148

Title

Jolly Jumpers

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21148

AC

74

Submit

290

Ratio

25.52%

时间&空间限制

  • Time Limit: 600/200 MS (Java/Others)     Memory Limit: 131072/65536 K (Java/Others)
  • 描述

    A sequence of n > 0 integers is called a jolly jumper if the absolute values of the difference between successive elements take on all the values 1 through n-1. For instance,

    1 4 2 3
    is a jolly jumper, because the absolutes differences are 3, 2, and 1 respectively. The definition implies that any sequence of a single integer is a jolly jumper. You are to write a program to determine whether or not each of a number of sequences is a jolly jumper.

    输入

    Each line of input contains an integer n < 3000 followed by n integers representing the sequence.

    输出

    Description
    A sequence of n > 0 integers is called a jolly jumper if the absolute values of the difference between successive elements take on all the values 1 through n-1. For instance,

    1 4 2 3
    is a jolly jumper, because the absolutes differences are 3, 2, and 1 respectively. The definition implies that any sequence of a single integer is a jolly jumper. You are to write a program to determine whether or not each of a number of sequences is a jolly jumper.
    Input
    Each line of input contains an integer n < 3000 followed by n integers representing the sequence.
    Output
    For each line of input, generate a line of output saying "Jolly" or "Not jolly".
    Sample Input
    4 1 4 2 3
    5 1 4 2 -1 6
    Sample Output
    Jolly
    Not jolly
    Source

    样例输入

    4 1 4 2 3
    5 1 4 2 -1 6

    样例输出

    Jolly
    Not jolly

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部