結果

問題 No.2922 Rose Garden
ユーザー hiro1729hiro1729
提出日時 2024-10-12 14:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 3,000 ms
コード長 654 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-10-12 14:48:36
合計ジャッジ時間 5,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
88,960 KB
testcase_01 AC 63 ms
78,592 KB
testcase_02 AC 70 ms
87,552 KB
testcase_03 AC 98 ms
99,072 KB
testcase_04 AC 69 ms
88,576 KB
testcase_05 AC 67 ms
84,712 KB
testcase_06 AC 61 ms
76,032 KB
testcase_07 AC 85 ms
100,736 KB
testcase_08 AC 52 ms
69,248 KB
testcase_09 AC 90 ms
103,424 KB
testcase_10 AC 57 ms
74,368 KB
testcase_11 AC 52 ms
68,736 KB
testcase_12 AC 71 ms
88,320 KB
testcase_13 AC 95 ms
96,128 KB
testcase_14 AC 51 ms
67,840 KB
testcase_15 AC 68 ms
85,248 KB
testcase_16 AC 78 ms
94,208 KB
testcase_17 AC 97 ms
99,072 KB
testcase_18 AC 48 ms
63,616 KB
testcase_19 AC 65 ms
80,512 KB
testcase_20 AC 75 ms
91,264 KB
testcase_21 AC 94 ms
98,688 KB
testcase_22 AC 68 ms
85,296 KB
testcase_23 AC 87 ms
100,932 KB
testcase_24 AC 52 ms
67,072 KB
testcase_25 AC 68 ms
82,304 KB
testcase_26 AC 77 ms
92,416 KB
testcase_27 AC 81 ms
95,716 KB
testcase_28 AC 78 ms
92,672 KB
testcase_29 AC 75 ms
87,936 KB
testcase_30 AC 48 ms
63,000 KB
testcase_31 AC 47 ms
60,800 KB
testcase_32 AC 47 ms
61,824 KB
testcase_33 AC 45 ms
60,928 KB
testcase_34 AC 55 ms
63,232 KB
testcase_35 AC 47 ms
61,824 KB
testcase_36 AC 50 ms
64,512 KB
testcase_37 AC 51 ms
65,536 KB
testcase_38 AC 48 ms
62,056 KB
testcase_39 AC 48 ms
63,872 KB
testcase_40 AC 75 ms
90,624 KB
testcase_41 AC 59 ms
74,112 KB
testcase_42 AC 102 ms
100,784 KB
testcase_43 AC 69 ms
80,256 KB
testcase_44 AC 98 ms
98,984 KB
testcase_45 AC 54 ms
68,864 KB
testcase_46 AC 104 ms
99,368 KB
testcase_47 AC 76 ms
92,160 KB
testcase_48 AC 54 ms
69,120 KB
testcase_49 AC 91 ms
101,376 KB
testcase_50 AC 43 ms
54,144 KB
testcase_51 AC 42 ms
53,632 KB
testcase_52 AC 44 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"
ctoi = lambda c: ord(c) - ord('a')
itoc = lambda i: chr(ord('a') + i)
inf = 10 ** 18
mod = 998244353
def acc(a):
	b = [0]
	for i in a:
		b.append(b[-1] + i)
	return b

n,s,b=M()
h=L()
m=h[0]
for i in R(1,n):
	if h[i]-m>b*s:
		exit(P("No"))
	m=max(m,h[i])
P("Yes")
0