結果

問題 No.5 数字のブロック
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 19:30:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 58,992 KB
最終ジャッジ日時 2024-09-13 11:11:58
合計ジャッジ時間 10,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,304 KB
testcase_01 AC 135 ms
53,956 KB
testcase_02 WA -
testcase_03 AC 232 ms
58,316 KB
testcase_04 AC 224 ms
57,236 KB
testcase_05 AC 255 ms
58,096 KB
testcase_06 AC 235 ms
57,980 KB
testcase_07 AC 233 ms
57,700 KB
testcase_08 AC 242 ms
58,284 KB
testcase_09 AC 205 ms
56,584 KB
testcase_10 AC 259 ms
58,096 KB
testcase_11 AC 230 ms
57,492 KB
testcase_12 AC 248 ms
58,472 KB
testcase_13 AC 257 ms
58,264 KB
testcase_14 AC 148 ms
53,984 KB
testcase_15 AC 168 ms
54,372 KB
testcase_16 AC 261 ms
58,744 KB
testcase_17 AC 271 ms
58,992 KB
testcase_18 AC 275 ms
58,852 KB
testcase_19 AC 272 ms
58,664 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 134 ms
54,060 KB
testcase_24 AC 170 ms
53,908 KB
testcase_25 AC 185 ms
54,364 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 223 ms
57,332 KB
testcase_30 AC 208 ms
56,516 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int l = sc.nextInt();
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) ar[i] = sc.nextInt();
		Arrays.sort(ar);
		for (int i=0; i<n; i++) {
			l -= ar[i];
			if (l < 0) {
				System.out.println(i); return;
			}
		}
		
	}
}
0