import java.util.*; public class No1015 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int sen = sc.nextInt(); int gosen = sc.nextInt(); int man = sc.nextInt(); List en = new ArrayList<>(); while (sc.hasNext()) { en.add(sc.nextInt()); } Collections.sort(en, Collections.reverseOrder()); while (en.get(0) >= 0) { int shop = en.get(0); if (man > 0) { shop -= 10000; man--; } else if (gosen > 0) { shop -= 5000; gosen--; } else if (sen > 0) { shop -= 1000; sen--; } else { System.out.println("No"); return; } en.set(0, shop); Collections.sort(en, Collections.reverseOrder()); } System.out.println("Yes"); } }