結果

問題 No.2922 Rose Garden
ユーザー manuomanuo
提出日時 2024-10-12 14:47:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,028 KB
最終ジャッジ日時 2024-10-12 14:47:54
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
90,892 KB
testcase_01 AC 69 ms
80,256 KB
testcase_02 AC 79 ms
90,240 KB
testcase_03 AC 106 ms
103,028 KB
testcase_04 AC 80 ms
90,240 KB
testcase_05 AC 75 ms
86,912 KB
testcase_06 AC 69 ms
78,848 KB
testcase_07 AC 93 ms
96,492 KB
testcase_08 AC 60 ms
70,912 KB
testcase_09 AC 95 ms
96,368 KB
testcase_10 AC 63 ms
75,904 KB
testcase_11 AC 61 ms
71,168 KB
testcase_12 AC 79 ms
89,984 KB
testcase_13 AC 91 ms
97,536 KB
testcase_14 AC 66 ms
69,120 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 56 ms
64,256 KB
testcase_31 AC 53 ms
62,336 KB
testcase_32 AC 54 ms
63,232 KB
testcase_33 AC 53 ms
62,592 KB
testcase_34 AC 54 ms
64,384 KB
testcase_35 AC 53 ms
63,360 KB
testcase_36 AC 53 ms
65,960 KB
testcase_37 AC 56 ms
67,200 KB
testcase_38 AC 53 ms
63,744 KB
testcase_39 AC 54 ms
65,536 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 48 ms
55,680 KB
testcase_51 AC 49 ms
55,168 KB
testcase_52 AC 49 ms
55,168 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 = 0
    else:
        mx = max(mx, H[i])
print(Yes)
0