解题思路:药品不够的话给下一个人
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNext()) { int a =scanner.nextInt(); int b =scanner.nextInt(); int sum=a;int c=0; int []arr = new int[b]; for(int i=0;i<b;i++) { arr[i]=scanner.nextInt(); if(sum<arr[i]) { c++; }else { sum=sum-arr[i]; } } System.out.println(c); } } }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:641 |
十->二进制转换 (C语言代码)浏览:1330 |
上车人数 (C语言代码)浏览:816 |
拆分位数 (C语言代码)浏览:1361 |
【出圈】 (C语言代码)浏览:824 |
用筛法求之N内的素数。 (C语言代码)浏览:1385 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:1292 |
【蟠桃记】 (C语言代码)浏览:697 |