結果

問題 No.2922 Rose Garden
ユーザー moon17moon17
提出日時 2024-10-12 18:06:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 230,948 KB
最終ジャッジ日時 2024-10-12 18:07:15
合計ジャッジ時間 16,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
103,680 KB
testcase_01 AC 127 ms
89,460 KB
testcase_02 AC 287 ms
97,920 KB
testcase_03 AC 316 ms
116,352 KB
testcase_04 AC 250 ms
98,056 KB
testcase_05 AC 220 ms
95,232 KB
testcase_06 AC 204 ms
87,936 KB
testcase_07 AC 390 ms
108,160 KB
testcase_08 AC 159 ms
82,072 KB
testcase_09 AC 209 ms
111,972 KB
testcase_10 AC 78 ms
86,016 KB
testcase_11 AC 284 ms
81,792 KB
testcase_12 AC 154 ms
98,176 KB
testcase_13 AC 298 ms
104,576 KB
testcase_14 AC 174 ms
80,128 KB
testcase_15 AC 415 ms
95,872 KB
testcase_16 AC 398 ms
103,664 KB
testcase_17 AC 438 ms
112,640 KB
testcase_18 AC 100 ms
76,928 KB
testcase_19 AC 324 ms
91,264 KB
testcase_20 AC 441 ms
100,932 KB
testcase_21 AC 488 ms
112,124 KB
testcase_22 AC 215 ms
95,744 KB
testcase_23 AC 384 ms
108,460 KB
testcase_24 AC 122 ms
80,128 KB
testcase_25 AC 228 ms
93,312 KB
testcase_26 AC 458 ms
101,720 KB
testcase_27 AC 498 ms
104,576 KB
testcase_28 AC 255 ms
101,120 KB
testcase_29 AC 412 ms
98,048 KB
testcase_30 TLE -
testcase_31 AC 236 ms
78,696 KB
testcase_32 AC 1,191 ms
111,792 KB
testcase_33 AC 162 ms
76,872 KB
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
n,s,b,*h=map(int,open(0).read().split())
dp={h[0]:s}
for j in h[1:]:
  ndp=defaultdict(int)
  for k,v in dp.items():
    if k>=j:
      ndp[k]=max(ndp[k],v)
      ndp[j]=max(ndp[j],s)
      continue
    nv,nk=v,k
    while nv>0:
      nv-=1
      nk+=b
      if nk>=j:
        ndp[nk]=max(ndp[nk],nv)
        ndp[j]=max(ndp[j],s)
        break
  if not ndp:
    exit(print('No'))
  dp=ndp
print('Yes')
0