結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 92 ms
97,664 KB
testcase_16 AC 108 ms
102,492 KB
testcase_17 AC 127 ms
106,112 KB
testcase_18 AC 50 ms
70,144 KB
testcase_19 AC 106 ms
94,464 KB
testcase_20 AC 102 ms
100,480 KB
testcase_21 AC 124 ms
106,496 KB
testcase_22 AC 92 ms
97,792 KB
testcase_23 AC 118 ms
104,064 KB
testcase_24 AC 64 ms
80,512 KB
testcase_25 AC 87 ms
96,384 KB
testcase_26 AC 107 ms
100,480 KB
testcase_27 AC 109 ms
102,144 KB
testcase_28 AC 104 ms
100,352 KB
testcase_29 AC 106 ms
99,200 KB
testcase_30 AC 54 ms
68,992 KB
testcase_31 AC 46 ms
63,872 KB
testcase_32 AC 47 ms
66,048 KB
testcase_33 AC 47 ms
63,616 KB
testcase_34 AC 49 ms
69,376 KB
testcase_35 AC 51 ms
65,152 KB
testcase_36 AC 51 ms
73,216 KB
testcase_37 AC 60 ms
78,464 KB
testcase_38 AC 49 ms
67,840 KB
testcase_39 AC 53 ms
72,448 KB
testcase_40 AC 102 ms
100,556 KB
testcase_41 AC 79 ms
88,208 KB
testcase_42 AC 129 ms
108,928 KB
testcase_43 AC 87 ms
94,208 KB
testcase_44 AC 138 ms
106,240 KB
testcase_45 AC 69 ms
82,560 KB
testcase_46 AC 146 ms
117,428 KB
testcase_47 AC 102 ms
100,480 KB
testcase_48 AC 64 ms
81,664 KB
testcase_49 AC 116 ms
103,936 KB
testcase_50 AC 40 ms
52,096 KB
testcase_51 AC 35 ms
52,224 KB
testcase_52 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


high = H[0]
for i in range(1, N):
  high += B * S
  if high < H[i]:
    ans = False
    break
  high = H[i]
else:
  ans = True

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 ans or max(dp[-1]) >= H[-1]:
  print("Yes")
else:
  print("No")
0