codeforces A. In Search of an Easy Problem
Posted godoforange
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces A. In Search of an Easy Problem相关的知识,希望对你有一定的参考价值。
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 nn people about their opinions. Each person answered whether this problem is easy or hard.
If at least one of these nn 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 nn (1≤n≤1001≤n≤100) — the number of people who were asked to give their opinions.
The second line contains nn integers, each integer is either 00 or 11. If ii-th integer is 00, then ii-th person thinks that the problem is easy; if it is 11, then ii-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.
3
0 0 1
HARD
1
0
EASY
为了熟悉CF。忍了。。
#include<iostream> #include<cstdlib> using namespace std; int main(){ int n; char* hard= "HARD"; char* easy= "EASY"; cin>>n; for(int i=0;i<n;i++){ int c; cin>>c; if(c==1){ cout<<hard; exit(0); } } cout<<easy; return 0; }
以上是关于codeforces A. In Search of an Easy Problem的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #313 A. Currency System in Geraldion
打CF,学算法——一星级Codeforces Round #313 (Div. 2) A. Currency System in Geraldion
Codeforces Round #572 (Div. 2) A.
Codeforces Round #191 (Div. 2) A. Flipping Game
Leetcode 35. Search in rotated sorted array
Codeforces Round #525 (Div. 2)A. Ehab and another construction problem