結果

問題 No.2922 Rose Garden
ユーザー hato336hato336
提出日時 2024-10-12 14:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 3,000 ms
コード長 523 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 122,888 KB
最終ジャッジ日時 2024-10-12 14:49:30
合計ジャッジ時間 10,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
107,148 KB
testcase_01 AC 151 ms
99,460 KB
testcase_02 AC 168 ms
106,576 KB
testcase_03 AC 179 ms
122,620 KB
testcase_04 AC 160 ms
106,780 KB
testcase_05 AC 156 ms
104,540 KB
testcase_06 AC 150 ms
98,296 KB
testcase_07 AC 174 ms
115,472 KB
testcase_08 AC 145 ms
92,728 KB
testcase_09 AC 199 ms
118,892 KB
testcase_10 AC 144 ms
96,988 KB
testcase_11 AC 143 ms
92,736 KB
testcase_12 AC 159 ms
106,844 KB
testcase_13 AC 164 ms
112,528 KB
testcase_14 AC 139 ms
91,216 KB
testcase_15 AC 156 ms
104,656 KB
testcase_16 AC 170 ms
111,872 KB
testcase_17 AC 203 ms
119,424 KB
testcase_18 AC 139 ms
89,944 KB
testcase_19 AC 154 ms
101,268 KB
testcase_20 AC 166 ms
109,216 KB
testcase_21 AC 177 ms
119,028 KB
testcase_22 AC 158 ms
104,816 KB
testcase_23 AC 174 ms
115,464 KB
testcase_24 AC 167 ms
91,560 KB
testcase_25 AC 154 ms
102,716 KB
testcase_26 AC 168 ms
109,516 KB
testcase_27 AC 169 ms
112,480 KB
testcase_28 AC 166 ms
109,452 KB
testcase_29 AC 166 ms
106,828 KB
testcase_30 AC 144 ms
89,932 KB
testcase_31 AC 167 ms
89,832 KB
testcase_32 AC 139 ms
89,748 KB
testcase_33 AC 135 ms
90,020 KB
testcase_34 AC 141 ms
89,864 KB
testcase_35 AC 142 ms
89,948 KB
testcase_36 AC 136 ms
89,884 KB
testcase_37 AC 138 ms
90,156 KB
testcase_38 AC 138 ms
89,848 KB
testcase_39 AC 164 ms
89,660 KB
testcase_40 AC 159 ms
108,972 KB
testcase_41 AC 148 ms
97,084 KB
testcase_42 AC 178 ms
122,448 KB
testcase_43 AC 155 ms
101,392 KB
testcase_44 AC 175 ms
119,264 KB
testcase_45 AC 143 ms
92,988 KB
testcase_46 AC 192 ms
122,888 KB
testcase_47 AC 161 ms
109,640 KB
testcase_48 AC 144 ms
92,176 KB
testcase_49 AC 173 ms
115,744 KB
testcase_50 AC 126 ms
85,868 KB
testcase_51 AC 124 ms
86,004 KB
testcase_52 AC 126 ms
85,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
n,s,b = map(int,input().split())
h = list(map(int,input().split()))
dp = [0 for j in range(n)]
now = h[0] + s*b
dp[0]=1
for i in range(1,n):
    if now >= h[i]:
        now = max(now,h[i]+s*b)
        dp[i] = 1
    else:
        break
print('Yes' if dp[-1] else 'No')
0