結果

問題 No.2922 Rose Garden
ユーザー timitimi
提出日時 2024-10-12 14:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 394 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 99,580 KB
最終ジャッジ日時 2024-10-12 14:54:20
合計ジャッジ時間 5,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
89,692 KB
testcase_01 AC 69 ms
79,316 KB
testcase_02 AC 75 ms
88,140 KB
testcase_03 AC 107 ms
98,760 KB
testcase_04 AC 77 ms
88,612 KB
testcase_05 AC 75 ms
86,944 KB
testcase_06 AC 65 ms
78,708 KB
testcase_07 AC 91 ms
99,580 KB
testcase_08 AC 58 ms
71,268 KB
testcase_09 AC 100 ms
97,160 KB
testcase_10 AC 63 ms
75,172 KB
testcase_11 AC 58 ms
69,820 KB
testcase_12 AC 76 ms
88,988 KB
testcase_13 AC 88 ms
96,680 KB
testcase_14 AC 57 ms
69,300 KB
testcase_15 AC 71 ms
85,872 KB
testcase_16 AC 81 ms
93,884 KB
testcase_17 AC 100 ms
97,628 KB
testcase_18 AC 52 ms
65,056 KB
testcase_19 AC 69 ms
80,928 KB
testcase_20 AC 80 ms
92,520 KB
testcase_21 AC 99 ms
97,088 KB
testcase_22 AC 70 ms
86,284 KB
testcase_23 AC 90 ms
99,364 KB
testcase_24 AC 55 ms
69,504 KB
testcase_25 AC 71 ms
83,580 KB
testcase_26 AC 80 ms
92,304 KB
testcase_27 AC 91 ms
96,776 KB
testcase_28 AC 82 ms
92,368 KB
testcase_29 AC 76 ms
89,256 KB
testcase_30 AC 50 ms
65,040 KB
testcase_31 AC 49 ms
62,828 KB
testcase_32 AC 51 ms
63,128 KB
testcase_33 AC 50 ms
63,060 KB
testcase_34 AC 50 ms
64,584 KB
testcase_35 AC 50 ms
62,104 KB
testcase_36 AC 53 ms
66,436 KB
testcase_37 AC 53 ms
66,008 KB
testcase_38 AC 51 ms
63,316 KB
testcase_39 AC 52 ms
65,372 KB
testcase_40 AC 76 ms
91,880 KB
testcase_41 AC 62 ms
75,276 KB
testcase_42 AC 106 ms
98,392 KB
testcase_43 AC 67 ms
80,820 KB
testcase_44 AC 100 ms
97,464 KB
testcase_45 AC 55 ms
69,956 KB
testcase_46 AC 109 ms
99,096 KB
testcase_47 AC 78 ms
91,640 KB
testcase_48 AC 57 ms
69,584 KB
testcase_49 AC 91 ms
99,340 KB
testcase_50 AC 42 ms
55,580 KB
testcase_51 AC 45 ms
54,372 KB
testcase_52 AC 42 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

from collections import deque
d=deque()

#T=int(input())
N,S,B=map(int,input().split())
H=list(map(int, input().split()))
ans='Yes'
for i in range(1,N):
  H[i]=max(H[i],H[i-1])
  
for i in range(1,N):
  if H[i]-H[i-1]>S*B:
    ans='No'
print(ans)
0