A12035 | In Search of an Easy Problem
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
When preparing a tournament, Codeforces coordinators try treir best to make the first problem as easy as possible. This time the coordinator had chosen some problem and asked $n$ people about their opinions. Each person answered whether this problem is easy or hard.
If at least one of these $n$ people has answered that the problem is hard, the coordinator decides to change the problem. For the given responses, check if the problem is easy enough.
If at least one of these $n$ people has answered that the problem is hard, the coordinator decides to change the problem. For the given responses, check if the problem is easy enough.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 100$ ) — the number of people who were asked to give their opinions.
The second line contains $n$ integers, each integer is either $0$ or $1$ . If $i$ -th integer is $0$ , then $i$ -th person thinks that the problem is easy; if it is $1$ , then $i$ -th person thinks that the problem is hard.
The second line contains $n$ integers, each integer is either $0$ or $1$ . If $i$ -th integer is $0$ , then $i$ -th person thinks that the problem is easy; if it is $1$ , then $i$ -th person thinks that the problem is hard.
输出格式
Print one word: "EASY" if the problem is easy according to all responses, or "HARD" if there is at least one person who thinks the problem is hard.
You may print every letter in any register: "EASY", "easy", "EaSY" and "eAsY" all will be processed correctly.
You may print every letter in any register: "EASY", "easy", "EaSY" and "eAsY" all will be processed correctly.
输入输出样例
输入 #1
3 0 0 1
输出 #1
HARD
输入 #2
1 0
输出 #2
EASY
In the first example the third person says it's a hard problem, so it should be replaced.
In the second example the problem easy for the only person, so it doesn't have to be replaced.
In the second example the problem easy for the only person, so it doesn't have to be replaced.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted