結果

問題 No.2922 Rose Garden
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 15:07:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-10-12 15:07:48
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 98 ms
97,512 KB
testcase_16 AC 120 ms
102,400 KB
testcase_17 AC 137 ms
105,856 KB
testcase_18 AC 56 ms
70,400 KB
testcase_19 AC 93 ms
94,208 KB
testcase_20 AC 105 ms
100,608 KB
testcase_21 AC 133 ms
106,024 KB
testcase_22 AC 97 ms
97,408 KB
testcase_23 AC 125 ms
103,840 KB
testcase_24 AC 68 ms
80,384 KB
testcase_25 AC 92 ms
95,964 KB
testcase_26 AC 109 ms
100,096 KB
testcase_27 AC 124 ms
101,888 KB
testcase_28 AC 110 ms
100,352 KB
testcase_29 AC 103 ms
98,944 KB
testcase_30 AC 52 ms
68,096 KB
testcase_31 AC 50 ms
62,848 KB
testcase_32 AC 50 ms
65,280 KB
testcase_33 AC 49 ms
62,720 KB
testcase_34 AC 52 ms
69,100 KB
testcase_35 AC 51 ms
64,512 KB
testcase_36 AC 54 ms
72,576 KB
testcase_37 AC 57 ms
75,392 KB
testcase_38 AC 52 ms
67,072 KB
testcase_39 AC 55 ms
71,936 KB
testcase_40 AC 107 ms
100,736 KB
testcase_41 AC 80 ms
87,936 KB
testcase_42 AC 161 ms
108,672 KB
testcase_43 AC 93 ms
94,424 KB
testcase_44 AC 131 ms
105,984 KB
testcase_45 AC 77 ms
82,560 KB
testcase_46 AC 148 ms
117,120 KB
testcase_47 AC 106 ms
100,352 KB
testcase_48 AC 69 ms
81,408 KB
testcase_49 AC 123 ms
103,680 KB
testcase_50 AC 37 ms
51,712 KB
testcase_51 AC 38 ms
51,968 KB
testcase_52 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[-1] * 2 for i in range(N)]
dp[0][1] = H[0]
for i in range(N - 1):
  if max(dp[i]) < H[i]:
    print("No")
    break
  dp[i + 1][0] = dp[i][0]
  if dp[i][1] == H[i]:
    dp[i + 1][0] = max(dp[i + 1][0], dp[i][1] + B * S)
    if dp[i + 1][0] >= H[i + 1]:
      dp[i + 1][1] = H[i + 1]
    if dp[i + 1][1] != H[i + 1]:
      if dp[i][1] + B * S >= H[i + 1]:
        dp[i + 1][1] = H[i + 1]

if max(dp[-1]) >= H[-1]:
  print("Yes")
else:
  print("No")
        
0