結果

問題 No.2922 Rose Garden
ユーザー moon17moon17
提出日時 2024-10-12 18:14:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 684 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-10-12 18:14:12
合計ジャッジ時間 10,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
105,216 KB
testcase_01 AC 89 ms
88,976 KB
testcase_02 AC 122 ms
97,408 KB
testcase_03 AC 159 ms
115,968 KB
testcase_04 AC 117 ms
97,920 KB
testcase_05 AC 129 ms
95,104 KB
testcase_06 AC 97 ms
87,552 KB
testcase_07 AC 153 ms
108,024 KB
testcase_08 AC 99 ms
81,412 KB
testcase_09 AC 131 ms
111,488 KB
testcase_10 AC 68 ms
79,616 KB
testcase_11 AC 127 ms
81,468 KB
testcase_12 AC 116 ms
97,792 KB
testcase_13 AC 144 ms
104,192 KB
testcase_14 AC 106 ms
79,872 KB
testcase_15 AC 129 ms
95,360 KB
testcase_16 AC 164 ms
103,680 KB
testcase_17 AC 175 ms
112,256 KB
testcase_18 AC 64 ms
72,704 KB
testcase_19 AC 124 ms
90,880 KB
testcase_20 AC 166 ms
100,612 KB
testcase_21 AC 166 ms
112,320 KB
testcase_22 AC 140 ms
94,976 KB
testcase_23 AC 178 ms
108,160 KB
testcase_24 AC 87 ms
80,128 KB
testcase_25 AC 129 ms
92,672 KB
testcase_26 AC 151 ms
101,120 KB
testcase_27 AC 138 ms
104,592 KB
testcase_28 AC 182 ms
100,992 KB
testcase_29 AC 125 ms
97,792 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
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())
ndp={h[0]:s}
for j in h[1:]:
  ndp,dp={},ndp
  f=0
  for k,v in dp.items():
    if k>=j:
      if k in ndp:
        ndp[k]=max(ndp[k],v)
      else:
        ndp[k]=v
      if j in ndp:
        ndp[j]=max(ndp[j],s)
      else:
        ndp[j]=s
      f=1
      continue
    x=(j-k)//b
    for nv in range(x,x+5):
      if nv>v:
        break
      nk=k+nv*b
      if nk>=j:
        if nk in ndp:
          ndp[nk]=max(ndp[nk],nv)
        else:
          ndp[nk]=nv
        if j in ndp:
          ndp[j]=max(ndp[j],s)
        else:
          ndp[j]=s
        f=1
        break
  if f<1:
    exit(print('No'))
print('Yes')
0