

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
コンビニエンスストアのりんごマートでは,りんごジュースを販売しています。
りんごマートはある日の朝に開店し,その時にはジュースの在庫が 本ありました。 すぬけ君は毎日昼にりんごマートでジュースを 本買います。 りんごマートでは毎日夜にジュースの在庫を確認し, 本以下だった場合,次の日の朝までに 本在庫を追加します。
すぬけ君がジュースを永遠に買い続けられるかを判定して下さい。 つまり,ジュースを買おうとした時,必ず在庫が 本以上あるかどうかを判定して下さい。 すぬけ君以外がジュースを買うことはありません。
また,今回の問題では入力ケースは 個のクエリからなります。
制約
- 入力される値は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
個目のクエリにおいては, である。
出力
行出力せよ。 行目には, 個目のクエリですぬけ君が永遠にりんごジュースを買い続けられる場合 Yes
,そうでない場合 No
と出力せよ。
入力例 1Copy
14 9 7 5 9 9 7 6 9 14 10 7 12 14 10 8 12 14 10 9 12 14 10 7 11 14 10 8 11 14 10 9 11 9 10 5 10 10 10 5 10 11 10 5 10 16 10 5 10 1000000000000000000 17 14 999999999999999985 1000000000000000000 17 15 999999999999999985
出力例 1Copy
No Yes No Yes Yes No No Yes No Yes Yes No No Yes
個目のクエリでは在庫の個数は以下のように変動します。
個目のクエリでは在庫の個数は以下のように変動します。
と続いていき,このまま永遠に購入し続けられます。
入力例 2Copy
24 1 2 3 4 1 2 4 3 1 3 2 4 1 3 4 2 1 4 2 3 1 4 3 2 2 1 3 4 2 1 4 3 2 3 1 4 2 3 4 1 2 4 1 3 2 4 3 1 3 1 2 4 3 1 4 2 3 2 1 4 3 2 4 1 3 4 1 2 3 4 2 1 4 1 2 3 4 1 3 2 4 2 1 3 4 2 3 1 4 3 1 2 4 3 2 1
出力例 2Copy
No No No No No No Yes Yes No No No No Yes Yes Yes No No No Yes Yes Yes No No No
Score : points
Problem Statement
Ringo Mart, a convenience store, sells apple juice.
On the opening day of Ringo Mart, there were cans of juice in stock in the morning. Snuke buys cans of juice here every day in the daytime. Then, the manager checks the number of cans of juice remaining in stock every night. If there are or less cans, new cans will be added to the stock by the next morning.
Determine if Snuke can buy juice indefinitely, that is, there is always or more cans of juice in stock when he attempts to buy them. Nobody besides Snuke buy juice at this store.
Note that each test case in this problem consists of queries.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
In the -th query, .
Output
Print lines. The -th line should contain Yes
if Snuke can buy apple juice indefinitely in the -th query; No
otherwise.
Sample Input 1Copy
14 9 7 5 9 9 7 6 9 14 10 7 12 14 10 8 12 14 10 9 12 14 10 7 11 14 10 8 11 14 10 9 11 9 10 5 10 10 10 5 10 11 10 5 10 16 10 5 10 1000000000000000000 17 14 999999999999999985 1000000000000000000 17 15 999999999999999985
Sample Output 1Copy
No Yes No Yes Yes No No Yes No Yes Yes No No Yes
In the first query, the number of cans of juice in stock changes as follows: (D represents daytime and N represents night.)
In the second query, the number of cans of juice in stock changes as follows:
and so on, thus Snuke can buy juice indefinitely.
Sample Input 2Copy
24 1 2 3 4 1 2 4 3 1 3 2 4 1 3 4 2 1 4 2 3 1 4 3 2 2 1 3 4 2 1 4 3 2 3 1 4 2 3 4 1 2 4 1 3 2 4 3 1 3 1 2 4 3 1 4 2 3 2 1 4 3 2 4 1 3 4 1 2 3 4 2 1 4 1 2 3 4 1 3 2 4 2 1 3 4 2 3 1 4 3 1 2 4 3 2 1
Sample Output 2Copy
No No No No No No Yes Yes No No No No Yes Yes Yes No No No Yes Yes Yes No No No