結果

問題 No.2922 Rose Garden
ユーザー mkawa2mkawa2
提出日時 2024-10-12 14:56:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 3,000 ms
コード長 952 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,800 KB
最終ジャッジ日時 2024-10-12 14:56:23
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
22,992 KB
testcase_01 AC 54 ms
18,044 KB
testcase_02 AC 83 ms
22,012 KB
testcase_03 AC 111 ms
31,336 KB
testcase_04 AC 82 ms
22,700 KB
testcase_05 AC 83 ms
20,884 KB
testcase_06 AC 56 ms
17,592 KB
testcase_07 AC 123 ms
28,176 KB
testcase_08 AC 44 ms
14,100 KB
testcase_09 AC 95 ms
29,348 KB
testcase_10 AC 44 ms
16,348 KB
testcase_11 AC 47 ms
13,872 KB
testcase_12 AC 73 ms
22,768 KB
testcase_13 AC 103 ms
26,120 KB
testcase_14 AC 42 ms
13,440 KB
testcase_15 AC 91 ms
21,716 KB
testcase_16 AC 110 ms
25,148 KB
testcase_17 AC 140 ms
30,316 KB
testcase_18 AC 34 ms
11,776 KB
testcase_19 AC 78 ms
19,356 KB
testcase_20 AC 114 ms
24,088 KB
testcase_21 AC 139 ms
29,924 KB
testcase_22 AC 92 ms
21,092 KB
testcase_23 AC 125 ms
28,768 KB
testcase_24 AC 41 ms
13,412 KB
testcase_25 AC 77 ms
19,752 KB
testcase_26 AC 108 ms
25,056 KB
testcase_27 AC 112 ms
26,196 KB
testcase_28 AC 107 ms
24,672 KB
testcase_29 AC 94 ms
22,496 KB
testcase_30 AC 33 ms
11,520 KB
testcase_31 AC 29 ms
10,880 KB
testcase_32 AC 33 ms
11,264 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 32 ms
11,648 KB
testcase_35 AC 28 ms
11,136 KB
testcase_36 AC 36 ms
12,160 KB
testcase_37 AC 38 ms
12,672 KB
testcase_38 AC 34 ms
11,392 KB
testcase_39 AC 36 ms
12,288 KB
testcase_40 AC 101 ms
23,532 KB
testcase_41 AC 61 ms
16,644 KB
testcase_42 AC 148 ms
30,968 KB
testcase_43 AC 77 ms
19,432 KB
testcase_44 AC 136 ms
30,352 KB
testcase_45 AC 50 ms
14,144 KB
testcase_46 AC 151 ms
31,800 KB
testcase_47 AC 113 ms
24,440 KB
testcase_48 AC 45 ms
13,788 KB
testcase_49 AC 133 ms
28,560 KB
testcase_50 AC 27 ms
10,496 KB
testcase_51 AC 27 ms
10,496 KB
testcase_52 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
# md = 998244353

def ok():
    n,s,b=LI()
    hh=LI()
    now=hh[0]+s*b
    for h in hh[1:]:
        if h>now:return False
        now=max(now,h+b*s)
    return True

print("Yes" if ok() else "No")


0