結果

問題 No.2922 Rose Garden
ユーザー Polaris2124Polaris2124
提出日時 2024-10-12 14:49:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,832 KB
最終ジャッジ日時 2024-10-12 14:49:42
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
93,668 KB
testcase_01 AC 71 ms
82,840 KB
testcase_02 AC 87 ms
96,328 KB
testcase_03 AC 107 ms
111,832 KB
testcase_04 AC 83 ms
93,904 KB
testcase_05 AC 77 ms
89,848 KB
testcase_06 AC 68 ms
84,128 KB
testcase_07 AC 93 ms
95,656 KB
testcase_08 AC 60 ms
75,108 KB
testcase_09 AC 102 ms
107,052 KB
testcase_10 AC 66 ms
81,924 KB
testcase_11 AC 59 ms
71,292 KB
testcase_12 AC 81 ms
90,668 KB
testcase_13 AC 97 ms
100,132 KB
testcase_14 AC 58 ms
70,060 KB
testcase_15 AC 81 ms
94,624 KB
testcase_16 AC 87 ms
97,104 KB
testcase_17 AC 103 ms
105,728 KB
testcase_18 AC 56 ms
68,076 KB
testcase_19 AC 73 ms
86,156 KB
testcase_20 AC 85 ms
94,540 KB
testcase_21 AC 103 ms
105,968 KB
testcase_22 AC 81 ms
94,528 KB
testcase_23 AC 95 ms
95,468 KB
testcase_24 AC 62 ms
71,224 KB
testcase_25 AC 75 ms
88,744 KB
testcase_26 AC 93 ms
95,548 KB
testcase_27 AC 97 ms
98,640 KB
testcase_28 AC 88 ms
95,356 KB
testcase_29 AC 88 ms
95,808 KB
testcase_30 AC 53 ms
66,308 KB
testcase_31 AC 51 ms
64,144 KB
testcase_32 AC 52 ms
64,884 KB
testcase_33 AC 53 ms
64,196 KB
testcase_34 AC 55 ms
66,124 KB
testcase_35 AC 52 ms
64,248 KB
testcase_36 AC 56 ms
67,116 KB
testcase_37 AC 56 ms
68,048 KB
testcase_38 AC 52 ms
64,944 KB
testcase_39 AC 56 ms
66,632 KB
testcase_40 AC 81 ms
92,448 KB
testcase_41 AC 67 ms
80,844 KB
testcase_42 AC 106 ms
107,260 KB
testcase_43 AC 73 ms
84,804 KB
testcase_44 AC 103 ms
106,204 KB
testcase_45 AC 61 ms
74,184 KB
testcase_46 AC 107 ms
110,888 KB
testcase_47 AC 87 ms
95,692 KB
testcase_48 AC 62 ms
74,320 KB
testcase_49 AC 124 ms
100,420 KB
testcase_50 AC 49 ms
61,116 KB
testcase_51 AC 49 ms
60,996 KB
testcase_52 AC 55 ms
61,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from itertools import product, permutations, combinations, accumulate
from heapq import heapify, heappush, heappop
from collections import deque, defaultdict, Counter
from bisect import bisect, bisect_left, bisect_right
from copy import copy, deepcopy
#from sortedcontainers import SortedSet, SortedList, SortedDict

sys.setrecursionlimit(10**7)
INF = float('inf')
LINF = 1 << 60
MOD = 10**9+7

def mii():
    return map(int, sys.stdin.readline().split())


N, S, B = mii()
H = list(mii())

Hi = [H[0]]
for i in range(1, N):
    if Hi[-1] < H[i]:
        Hi.append(H[i])

ans = True

for i in range(len(Hi)-1):
    if Hi[i+1] > Hi[i] + S*B:
        ans = False
        break

if ans:
    print("Yes")
else:
    print("No")
0