

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
健康に気を使っている高橋君は、 種類の栄養素について、食事によって十分な量を摂取できているか気になりました。
番目の栄養素は 日あたり 以上摂取することが目標です。
高橋君は今日 品の食品を食べ、 品目の食品からは栄養素 を 摂取しました。
種類全ての栄養素で目標を達成しているかどうかを判定してください。
制約
- 入力は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
種類全ての栄養素で目標を達成しているなら Yes
、そうでないならば No
を出力せよ。
入力例 1Copy
2 3 10 20 30 20 0 10 0 100 100
出力例 1Copy
Yes
栄養素 は 品目から 、 品目から 摂取したため、合わせて 摂取しており、 以上摂取するという目標を達成しています。
栄養素 についても同様に目標を達成しています。
入力例 2Copy
2 4 10 20 30 40 20 0 10 30 0 100 100 0
出力例 2Copy
No
栄養素 について目標を達成していません。
Score : points
Problem Statement
Takahashi is health-conscious and concerned about whether he is getting enough of types of nutrients from his diet.
For the -th nutrient, his goal is to take at least units per day.
Today, he ate foods, and from the -th food, he took units of nutrient .
Determine whether he has met the goal for all types of nutrients.
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print Yes
if the goal is met for all types of nutrients, and No
otherwise.
Sample Input 1Copy
2 3 10 20 30 20 0 10 0 100 100
Sample Output 1Copy
Yes
For nutrient , Takahashi took units from the -st food and units from the -nd food, totaling units, thus meeting the goal of taking at least units.
Similarly, he meets the goal for nutrients and .
Sample Input 2Copy
2 4 10 20 30 40 20 0 10 30 0 100 100 0
Sample Output 2Copy
No
The goal is not met for nutrient .