I can confirm this isn’t working on Multisite. It doesn’t remove the Appearance > Customize submenu item.
You can put this in your theme(s) tho:
function disable_the_customizer () {
global $submenu;
unset($submenu['themes.php'][6]);
}
add_action('admin_menu', 'disable_the_customizer');