x, y = gets.chomp.split.map(&:to_f) n = gets.chomp.to_i a = gets.chomp.split.map(&:to_i) a.each_cons(2) do |ai, aj| # aj m地点まで来るのに師匠がどれくらい時間がかかるのか求める(= t時間) t = aj / 1000.to_f / y # t時間でkobaが何m進むのか求める(= d m) d = t * x * 1000 if d < ai puts 'NO' exit end end puts 'YES'