結果

問題 No.2922 Rose Garden
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-12 14:56:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 3,000 ms
コード長 925 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 110,392 KB
最終ジャッジ日時 2024-10-12 14:56:12
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
97,552 KB
testcase_01 AC 67 ms
82,176 KB
testcase_02 AC 79 ms
95,360 KB
testcase_03 AC 127 ms
110,008 KB
testcase_04 AC 76 ms
92,928 KB
testcase_05 AC 74 ms
90,624 KB
testcase_06 AC 66 ms
83,584 KB
testcase_07 AC 95 ms
96,896 KB
testcase_08 AC 60 ms
73,472 KB
testcase_09 AC 117 ms
104,568 KB
testcase_10 AC 65 ms
80,256 KB
testcase_11 AC 55 ms
70,528 KB
testcase_12 AC 80 ms
91,200 KB
testcase_13 AC 92 ms
99,072 KB
testcase_14 AC 56 ms
69,504 KB
testcase_15 AC 77 ms
95,064 KB
testcase_16 AC 87 ms
98,628 KB
testcase_17 AC 109 ms
104,408 KB
testcase_18 AC 56 ms
67,072 KB
testcase_19 AC 73 ms
86,600 KB
testcase_20 AC 77 ms
94,192 KB
testcase_21 AC 107 ms
104,284 KB
testcase_22 AC 89 ms
94,976 KB
testcase_23 AC 100 ms
97,408 KB
testcase_24 AC 56 ms
70,272 KB
testcase_25 AC 74 ms
89,600 KB
testcase_26 AC 85 ms
96,128 KB
testcase_27 AC 92 ms
98,688 KB
testcase_28 AC 86 ms
96,124 KB
testcase_29 AC 81 ms
94,848 KB
testcase_30 AC 50 ms
64,512 KB
testcase_31 AC 53 ms
62,848 KB
testcase_32 AC 51 ms
63,616 KB
testcase_33 AC 50 ms
62,464 KB
testcase_34 AC 51 ms
65,024 KB
testcase_35 AC 50 ms
63,488 KB
testcase_36 AC 53 ms
66,048 KB
testcase_37 AC 53 ms
66,816 KB
testcase_38 AC 52 ms
64,128 KB
testcase_39 AC 52 ms
65,792 KB
testcase_40 AC 89 ms
93,140 KB
testcase_41 AC 66 ms
80,000 KB
testcase_42 AC 110 ms
103,300 KB
testcase_43 AC 69 ms
83,968 KB
testcase_44 AC 108 ms
105,152 KB
testcase_45 AC 61 ms
73,976 KB
testcase_46 AC 115 ms
110,392 KB
testcase_47 AC 87 ms
96,384 KB
testcase_48 AC 58 ms
72,320 KB
testcase_49 AC 102 ms
99,084 KB
testcase_50 AC 45 ms
55,680 KB
testcase_51 AC 45 ms
55,552 KB
testcase_52 AC 46 ms
55,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
# from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

N, S, B = map(int, input().split())
H = list(map(int, input().split()))
HH = []
for h in H:
    if not HH or HH[-1] < h:
        HH.append(h)
for i in range(1, len(HH)):
    if HH[i-1]+B*S < HH[i]:
        print("No")
        exit()
print("Yes")
0