結果

問題 No.2922 Rose Garden
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 15:11:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 117,032 KB
最終ジャッジ日時 2024-10-12 15:11:23
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 88 ms
97,568 KB
testcase_16 AC 103 ms
102,400 KB
testcase_17 AC 125 ms
106,112 KB
testcase_18 AC 61 ms
70,016 KB
testcase_19 AC 86 ms
94,076 KB
testcase_20 AC 101 ms
100,608 KB
testcase_21 AC 123 ms
105,984 KB
testcase_22 AC 91 ms
97,664 KB
testcase_23 AC 115 ms
103,680 KB
testcase_24 AC 60 ms
80,640 KB
testcase_25 AC 86 ms
95,872 KB
testcase_26 AC 104 ms
100,224 KB
testcase_27 AC 109 ms
102,248 KB
testcase_28 AC 99 ms
100,480 KB
testcase_29 AC 96 ms
98,944 KB
testcase_30 AC 56 ms
68,096 KB
testcase_31 AC 48 ms
63,104 KB
testcase_32 AC 48 ms
65,280 KB
testcase_33 AC 51 ms
62,976 KB
testcase_34 AC 48 ms
68,736 KB
testcase_35 AC 44 ms
64,512 KB
testcase_36 AC 48 ms
72,192 KB
testcase_37 AC 50 ms
75,520 KB
testcase_38 AC 46 ms
66,816 KB
testcase_39 AC 50 ms
71,680 KB
testcase_40 AC 96 ms
100,608 KB
testcase_41 AC 72 ms
88,064 KB
testcase_42 AC 130 ms
108,800 KB
testcase_43 AC 85 ms
94,492 KB
testcase_44 AC 122 ms
105,856 KB
testcase_45 AC 72 ms
82,432 KB
testcase_46 AC 134 ms
117,032 KB
testcase_47 AC 95 ms
100,352 KB
testcase_48 AC 63 ms
81,792 KB
testcase_49 AC 117 ms
103,680 KB
testcase_50 AC 33 ms
51,712 KB
testcase_51 AC 32 ms
51,840 KB
testcase_52 AC 35 ms
51,712 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