結果

問題 No.5 数字のブロック
ユーザー rabirabi
提出日時 2019-06-24 14:48:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 883 bytes
コンパイル時間 6,804 ms
コンパイル使用メモリ 77,496 KB
実行使用メモリ 40,296 KB
最終ジャッジ日時 2024-06-11 15:37:04
合計ジャッジ時間 7,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,132 KB
testcase_01 AC 47 ms
36,688 KB
testcase_02 AC 47 ms
36,812 KB
testcase_03 AC 94 ms
39,536 KB
testcase_04 AC 76 ms
38,432 KB
testcase_05 AC 99 ms
39,492 KB
testcase_06 AC 75 ms
38,960 KB
testcase_07 AC 78 ms
38,736 KB
testcase_08 AC 91 ms
39,600 KB
testcase_09 AC 61 ms
36,932 KB
testcase_10 AC 92 ms
40,048 KB
testcase_11 AC 72 ms
38,292 KB
testcase_12 AC 88 ms
39,420 KB
testcase_13 AC 90 ms
39,680 KB
testcase_14 AC 46 ms
37,208 KB
testcase_15 AC 47 ms
37,064 KB
testcase_16 AC 96 ms
39,992 KB
testcase_17 AC 97 ms
40,064 KB
testcase_18 AC 86 ms
39,652 KB
testcase_19 AC 96 ms
40,296 KB
testcase_20 AC 45 ms
37,192 KB
testcase_21 AC 46 ms
36,808 KB
testcase_22 AC 45 ms
36,808 KB
testcase_23 AC 45 ms
36,952 KB
testcase_24 AC 47 ms
37,056 KB
testcase_25 AC 49 ms
37,220 KB
testcase_26 AC 47 ms
37,264 KB
testcase_27 AC 47 ms
37,012 KB
testcase_28 AC 48 ms
37,164 KB
testcase_29 AC 77 ms
38,216 KB
testcase_30 AC 60 ms
37,904 KB
testcase_31 AC 47 ms
37,080 KB
testcase_32 AC 48 ms
37,080 KB
testcase_33 AC 46 ms
37,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Tester2 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			int l = Integer.parseInt(br.readLine());
			int n = Integer.parseInt(br.readLine());
			String[] ary = br.readLine().split(" ");
			int[] b = chgInt(ary);

			int num=0,cnt=0;
			for(int i=0; i<b.length; i++) {
				num += b[i];
				if(num<=l) {
					cnt++;
				}else {
					break;
				}
			}
			System.out.println(cnt);

		}catch(IOException e) {
			e.printStackTrace();
		}
	}
	static int[] sort(int[] ary) {
		Arrays.sort(ary);
		return ary;
	}
	static int[] chgInt(String[] ary) {
		int[] a = new int[ary.length];
		for(int i=0; i<ary.length; i++) {
			a[i] = Integer.parseInt(ary[i]);
		}
		return sort(a);
	}

}
0