結果

問題 No.2922 Rose Garden
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-19 08:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 3,000 ms
コード長 160 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-29 10:35:48
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
86,528 KB
testcase_01 AC 68 ms
76,544 KB
testcase_02 AC 79 ms
85,632 KB
testcase_03 AC 105 ms
107,776 KB
testcase_04 AC 79 ms
86,272 KB
testcase_05 AC 74 ms
83,200 KB
testcase_06 AC 66 ms
75,008 KB
testcase_07 AC 89 ms
97,664 KB
testcase_08 AC 57 ms
67,072 KB
testcase_09 AC 93 ms
101,888 KB
testcase_10 AC 62 ms
71,424 KB
testcase_11 AC 56 ms
66,944 KB
testcase_12 AC 78 ms
85,888 KB
testcase_13 AC 88 ms
93,440 KB
testcase_14 AC 56 ms
65,408 KB
testcase_15 AC 75 ms
83,328 KB
testcase_16 AC 84 ms
92,416 KB
testcase_17 AC 103 ms
104,064 KB
testcase_18 AC 46 ms
61,440 KB
testcase_19 AC 64 ms
78,336 KB
testcase_20 AC 75 ms
88,832 KB
testcase_21 AC 96 ms
102,144 KB
testcase_22 AC 66 ms
82,944 KB
testcase_23 AC 84 ms
98,688 KB
testcase_24 AC 50 ms
65,536 KB
testcase_25 AC 64 ms
79,744 KB
testcase_26 AC 75 ms
90,496 KB
testcase_27 AC 77 ms
93,952 KB
testcase_28 AC 84 ms
89,984 KB
testcase_29 AC 79 ms
86,272 KB
testcase_30 AC 44 ms
60,928 KB
testcase_31 AC 44 ms
58,880 KB
testcase_32 AC 45 ms
59,648 KB
testcase_33 AC 44 ms
58,624 KB
testcase_34 AC 45 ms
60,672 KB
testcase_35 AC 44 ms
59,904 KB
testcase_36 AC 45 ms
62,592 KB
testcase_37 AC 47 ms
63,488 KB
testcase_38 AC 45 ms
59,904 KB
testcase_39 AC 46 ms
62,208 KB
testcase_40 AC 72 ms
88,320 KB
testcase_41 AC 57 ms
72,576 KB
testcase_42 AC 96 ms
107,648 KB
testcase_43 AC 63 ms
77,952 KB
testcase_44 AC 87 ms
102,784 KB
testcase_45 AC 52 ms
67,072 KB
testcase_46 AC 94 ms
107,432 KB
testcase_47 AC 72 ms
90,112 KB
testcase_48 AC 50 ms
66,432 KB
testcase_49 AC 84 ms
98,776 KB
testcase_50 AC 39 ms
51,456 KB
testcase_51 AC 42 ms
51,840 KB
testcase_52 AC 39 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B=map(int,input().split())
H=list(map(int,input().split()))
mx=H[0]
for i in range(N):
	if B*S<H[i]-mx:
		print("No")
		exit()
	mx=max(mx,H[i])
print("Yes")
0