博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 719A 月亮
阅读量:5153 次
发布时间:2019-06-13

本文共 2315 字,大约阅读时间需要 7 分钟。

A. Vitya in the Countryside
time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

  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 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, and then cycle repeats, thus after the second 1 again goes 0.

  As there is no internet in the countryside, Vitya has been watching the moon for n 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.

Input

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

  The second line contains n integers ai (0 ≤ ai ≤ 15) — Vitya's records.

  It's guaranteed that the input data is consistent.

Output

  If Vitya can be sure that the size of visible part of the moon on day n + 1 will be less than the size of the visible part on day n, 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.

Examples
Input
5 3 4 5 6 7
Output
UP
Input
7 12 13 14 15 14 13 12
Output
DOWN
Input
1 8
Output
-1
Note

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

  In the second sample, the size of the moon on the next day will be 11, 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 7 or 9, thus the answer is -1.

 

 

解法:

 

1 #include
2 int main(){ 3 int n,i; 4 int a[30]; 5 while(scanf("%d",&n)){ 6 for(i=0;i
a[n-1])15 printf("DOWN\n");16 }17 return 0;18 }

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/fangxiaoqi/p/10348714.html

你可能感兴趣的文章
Swift加载Xib创建的Controller
查看>>
WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!
查看>>
每天一个Linux命令 - 【chkconfig】
查看>>
△UVA10106 - Product(大数乘法)
查看>>
golang (7) 文件操作
查看>>
关于 Object.defineProperty()
查看>>
免认证的ssh登录设置
查看>>
Win10中VMware14安装CentOS7详细步骤
查看>>
Oracle SOA Suite OverView
查看>>
APP和服务端-架构设计(二)
查看>>
基于Android2.2的联系人的基本操作
查看>>
Button的四中点击事件
查看>>
左侧楼层导航
查看>>
[转] Maven 从命令行获取项目的版本号
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
Java Development Environment in Linux: Install and Configure Oracle
查看>>
Delphi XE2 update4 很快就要来了
查看>>
Mac 关机卡住
查看>>
Python--进程与线程
查看>>