結果

問題 No.2922 Rose Garden
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 14:47:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 107,564 KB
最終ジャッジ日時 2024-10-12 14:47:36
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge / 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 61 ms
85,716 KB
testcase_16 AC 69 ms
93,752 KB
testcase_17 AC 89 ms
104,208 KB
testcase_18 AC 42 ms
62,744 KB
testcase_19 AC 58 ms
79,512 KB
testcase_20 AC 69 ms
90,220 KB
testcase_21 AC 79 ms
102,628 KB
testcase_22 AC 61 ms
83,860 KB
testcase_23 AC 76 ms
98,704 KB
testcase_24 AC 43 ms
65,992 KB
testcase_25 AC 56 ms
81,064 KB
testcase_26 AC 69 ms
91,780 KB
testcase_27 AC 71 ms
95,928 KB
testcase_28 AC 67 ms
91,488 KB
testcase_29 AC 62 ms
86,720 KB
testcase_30 AC 42 ms
62,812 KB
testcase_31 AC 40 ms
59,864 KB
testcase_32 AC 41 ms
62,172 KB
testcase_33 AC 39 ms
59,908 KB
testcase_34 AC 41 ms
63,224 KB
testcase_35 AC 44 ms
60,792 KB
testcase_36 AC 43 ms
65,164 KB
testcase_37 AC 43 ms
65,728 KB
testcase_38 AC 40 ms
62,896 KB
testcase_39 AC 42 ms
63,368 KB
testcase_40 AC 66 ms
90,004 KB
testcase_41 AC 54 ms
74,144 KB
testcase_42 AC 85 ms
107,512 KB
testcase_43 AC 56 ms
79,424 KB
testcase_44 AC 85 ms
104,252 KB
testcase_45 AC 46 ms
68,124 KB
testcase_46 AC 88 ms
107,272 KB
testcase_47 AC 69 ms
91,008 KB
testcase_48 AC 46 ms
67,824 KB
testcase_49 AC 77 ms
98,612 KB
testcase_50 AC 35 ms
53,404 KB
testcase_51 AC 34 ms
52,880 KB
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,S,B=map(int,input().split())
h=list(map(int,input().split()))
for i in range(n-1):
  s=S
  s-=(max(h[i+1]-h[i],0)+B-1)//B
  if S<0:
    print("No")
    exit()
print("Yes")
0