結果

問題 No.2922 Rose Garden
ユーザー hiro1729hiro1729
提出日時 2024-10-12 14:45:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 101,968 KB
最終ジャッジ日時 2024-10-12 14:45:55
合計ジャッジ時間 5,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
87,048 KB
testcase_01 AC 61 ms
76,644 KB
testcase_02 AC 73 ms
86,860 KB
testcase_03 AC 96 ms
99,136 KB
testcase_04 AC 71 ms
86,740 KB
testcase_05 AC 66 ms
83,720 KB
testcase_06 AC 60 ms
75,180 KB
testcase_07 AC 82 ms
98,468 KB
testcase_08 AC 52 ms
67,692 KB
testcase_09 AC 86 ms
101,968 KB
testcase_10 AC 59 ms
73,800 KB
testcase_11 AC 52 ms
68,188 KB
testcase_12 AC 73 ms
88,320 KB
testcase_13 AC 79 ms
94,264 KB
testcase_14 AC 51 ms
68,140 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 58 ms
65,116 KB
testcase_31 AC 52 ms
62,844 KB
testcase_32 AC 53 ms
64,188 KB
testcase_33 AC 50 ms
62,724 KB
testcase_34 AC 52 ms
65,552 KB
testcase_35 AC 50 ms
64,060 KB
testcase_36 AC 56 ms
67,336 KB
testcase_37 AC 57 ms
66,792 KB
testcase_38 AC 52 ms
63,784 KB
testcase_39 AC 55 ms
67,016 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 42 ms
54,008 KB
testcase_51 AC 44 ms
53,816 KB
testcase_52 AC 42 ms
53,928 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()
yn(all(max(0,h[i+1]-h[i])<=b*s for i in R(n-1)))
0