結果

問題 No.2922 Rose Garden
ユーザー hatonobuhatonobu
提出日時 2024-10-14 11:09:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 3,000 ms
コード長 742 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 121,020 KB
最終ジャッジ日時 2024-10-14 11:09:44
合計ジャッジ時間 8,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
99,708 KB
testcase_01 AC 106 ms
89,488 KB
testcase_02 AC 109 ms
99,452 KB
testcase_03 AC 129 ms
121,020 KB
testcase_04 AC 106 ms
99,700 KB
testcase_05 AC 113 ms
96,312 KB
testcase_06 AC 96 ms
87,816 KB
testcase_07 AC 120 ms
111,308 KB
testcase_08 AC 85 ms
82,948 KB
testcase_09 AC 123 ms
115,884 KB
testcase_10 AC 88 ms
85,156 KB
testcase_11 AC 84 ms
82,920 KB
testcase_12 AC 109 ms
100,076 KB
testcase_13 AC 121 ms
107,028 KB
testcase_14 AC 89 ms
81,228 KB
testcase_15 AC 115 ms
96,936 KB
testcase_16 AC 116 ms
106,588 KB
testcase_17 AC 127 ms
116,404 KB
testcase_18 AC 72 ms
73,840 KB
testcase_19 AC 102 ms
91,276 KB
testcase_20 AC 112 ms
102,980 KB
testcase_21 AC 127 ms
115,836 KB
testcase_22 AC 108 ms
96,384 KB
testcase_23 AC 124 ms
111,488 KB
testcase_24 AC 85 ms
81,272 KB
testcase_25 AC 110 ms
93,408 KB
testcase_26 AC 114 ms
103,352 KB
testcase_27 AC 118 ms
107,192 KB
testcase_28 AC 116 ms
103,364 KB
testcase_29 AC 110 ms
99,736 KB
testcase_30 AC 73 ms
72,576 KB
testcase_31 AC 71 ms
70,144 KB
testcase_32 AC 74 ms
71,296 KB
testcase_33 AC 72 ms
70,272 KB
testcase_34 AC 72 ms
72,960 KB
testcase_35 AC 70 ms
70,912 KB
testcase_36 AC 73 ms
74,368 KB
testcase_37 AC 85 ms
75,612 KB
testcase_38 AC 73 ms
71,936 KB
testcase_39 AC 74 ms
74,368 KB
testcase_40 AC 112 ms
102,460 KB
testcase_41 AC 91 ms
85,100 KB
testcase_42 AC 133 ms
120,884 KB
testcase_43 AC 106 ms
91,152 KB
testcase_44 AC 125 ms
115,988 KB
testcase_45 AC 85 ms
83,088 KB
testcase_46 AC 132 ms
120,876 KB
testcase_47 AC 116 ms
103,384 KB
testcase_48 AC 91 ms
82,032 KB
testcase_49 AC 127 ms
111,872 KB
testcase_50 AC 67 ms
66,944 KB
testcase_51 AC 65 ms
67,200 KB
testcase_52 AC 65 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
#import pypyjit
import itertools
import heapq
import bisect
import queue

#pypyjit.set_param("max_unroll_recursion=-1")
#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353
INF = 8 * 10**18

N,S,B = mi()
H = li()
max_h = []
for i in range(N):
  max_h.append(H[i] + B*S)

now = 0
ans = "Yes"
for i in range(N-1):
  if now < max_h[i]:
    now = max_h[i]
  
  if now >= H[i+1]:
    pass
  else:
    ans = "No" 
    break

print(ans)  
0