結果

問題 No.2922 Rose Garden
ユーザー manuomanuo
提出日時 2024-10-12 14:49:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 3,000 ms
コード長 688 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 103,076 KB
最終ジャッジ日時 2024-10-12 14:49:53
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
90,800 KB
testcase_01 AC 70 ms
80,688 KB
testcase_02 AC 78 ms
89,852 KB
testcase_03 AC 103 ms
102,612 KB
testcase_04 AC 82 ms
90,796 KB
testcase_05 AC 76 ms
88,332 KB
testcase_06 AC 66 ms
79,656 KB
testcase_07 AC 91 ms
96,664 KB
testcase_08 AC 61 ms
73,040 KB
testcase_09 AC 95 ms
96,492 KB
testcase_10 AC 61 ms
76,944 KB
testcase_11 AC 59 ms
72,736 KB
testcase_12 AC 77 ms
90,420 KB
testcase_13 AC 89 ms
97,684 KB
testcase_14 AC 57 ms
70,796 KB
testcase_15 AC 74 ms
87,688 KB
testcase_16 AC 85 ms
98,120 KB
testcase_17 AC 99 ms
96,784 KB
testcase_18 AC 54 ms
67,120 KB
testcase_19 AC 71 ms
83,896 KB
testcase_20 AC 79 ms
93,160 KB
testcase_21 AC 98 ms
97,188 KB
testcase_22 AC 83 ms
88,140 KB
testcase_23 AC 97 ms
96,328 KB
testcase_24 AC 59 ms
70,544 KB
testcase_25 AC 71 ms
85,384 KB
testcase_26 AC 86 ms
95,576 KB
testcase_27 AC 91 ms
98,072 KB
testcase_28 AC 88 ms
95,484 KB
testcase_29 AC 81 ms
91,160 KB
testcase_30 AC 53 ms
65,160 KB
testcase_31 AC 52 ms
62,712 KB
testcase_32 AC 51 ms
65,012 KB
testcase_33 AC 52 ms
64,444 KB
testcase_34 AC 54 ms
64,636 KB
testcase_35 AC 53 ms
63,936 KB
testcase_36 AC 54 ms
66,044 KB
testcase_37 AC 55 ms
67,324 KB
testcase_38 AC 52 ms
65,652 KB
testcase_39 AC 56 ms
67,416 KB
testcase_40 AC 80 ms
92,816 KB
testcase_41 AC 66 ms
78,088 KB
testcase_42 AC 105 ms
102,904 KB
testcase_43 AC 69 ms
83,052 KB
testcase_44 AC 99 ms
96,752 KB
testcase_45 AC 62 ms
71,488 KB
testcase_46 AC 104 ms
103,076 KB
testcase_47 AC 85 ms
95,688 KB
testcase_48 AC 58 ms
71,220 KB
testcase_49 AC 95 ms
96,216 KB
testcase_50 AC 47 ms
56,496 KB
testcase_51 AC 47 ms
57,720 KB
testcase_52 AC 47 ms
56,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cmp_to_key, cache
from heapq import heappop, heappush
import math, sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**7)
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<62
Yes, No = "Yes", "No"

N, S, B = map(int, input().split())
H = list(map(int, input().split()))

cur = 0
h = H[0]+S*B
mx = 0
for i in range(N):
    if h < H[i]:
        h = mx+S*B
        if h < H[i]:
            print(No)
            exit()
        mx = H[i]
    else:
        mx = max(mx, H[i])
print(Yes)
0