package test1; import java.util.Scanner; import java.util.Arrays; public class test1_class { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int L = sc.nextInt(); sc.nextLine(); int N = sc.nextInt(); sc.nextLine(); int[] W = new int[N]; for(int i=0; i 0) { num++; //全て入った場合 if(num == N) break; L -= W[num]; } System.out.println(num + "\n"); } }