CF719A.Vitya in the Countryside

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Every summer Vitya comes to visit his grandmother in the countryside. This summer, he got a huge wart. Every grandma knows that one should treat warts when the moon goes down. Thus, Vitya has to catch the moment when the moon is down.

Moon cycle lasts 30 days. The size of the visible part of the moon (in Vitya's units) for each day is 00 , 11 , 22 , 33 , 44 , 55 , 66 , 77 , 88 , 99 , 1010 , 1111 , 1212 , 1313 , 1414 , 1515 , 1414 , 1313 , 1212 , 1111 , 1010 , 99 , 88 , 77 , 66 , 55 , 44 , 33 , 22 , 11 , and then cycle repeats, thus after the second 11 again goes 00 .

As there is no internet in the countryside, Vitya has been watching the moon for nn consecutive days and for each of these days he wrote down the size of the visible part of the moon. Help him find out whether the moon will be up or down next day, or this cannot be determined by the data he has.

输入格式

The first line of the input contains a single integer nn ( 1<=n<=921<=n<=92 ) — the number of consecutive days Vitya was watching the size of the visible part of the moon.

The second line contains nn integers aia_{i} ( 0<=ai<=150<=a_{i}<=15 ) — Vitya's records.

It's guaranteed that the input data is consistent.

输出格式

If Vitya can be sure that the size of visible part of the moon on day n+1n+1 will be less than the size of the visible part on day nn , then print "DOWN" at the only line of the output. If he might be sure that the size of the visible part will increase, then print "UP". If it's impossible to determine what exactly will happen with the moon, print -1.

输入输出样例

  • 输入#1

    5
    3 4 5 6 7
    

    输出#1

    UP
    
  • 输入#2

    7
    12 13 14 15 14 13 12
    

    输出#2

    DOWN
    
  • 输入#3

    1
    8
    

    输出#3

    -1
    

说明/提示

In the first sample, the size of the moon on the next day will be equal to 88 , thus the answer is "UP".

In the second sample, the size of the moon on the next day will be 1111 , thus the answer is "DOWN".

In the third sample, there is no way to determine whether the size of the moon on the next day will be 77 or 99 , thus the answer is -1.

首页