結果

問題 No.2922 Rose Garden
ユーザー ルク
提出日時 2024-10-12 14:46:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 106,300 KB
最終ジャッジ日時 2024-10-12 14:46:39
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s,b=map(int,input().split())
h=list(map(int,input().split()))
for i in range(n-1):
  if s*b>=(h[i+1]-h[i]):
    pass
  else:
    print("No")
    exit()
print("Yes")
0