結果

問題 No.5 数字のブロック
ユーザー 水野嶺水野嶺
提出日時 2020-05-20 16:40:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 399 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 58,828 KB
最終ジャッジ日時 2024-10-01 23:38:16
合計ジャッジ時間 11,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,844 KB
testcase_01 AC 130 ms
53,916 KB
testcase_02 AC 124 ms
53,920 KB
testcase_03 AC 327 ms
58,680 KB
testcase_04 AC 274 ms
58,576 KB
testcase_05 AC 342 ms
58,736 KB
testcase_06 AC 304 ms
58,320 KB
testcase_07 AC 285 ms
58,672 KB
testcase_08 AC 318 ms
58,552 KB
testcase_09 AC 270 ms
56,956 KB
testcase_10 AC 363 ms
58,828 KB
testcase_11 AC 290 ms
58,684 KB
testcase_12 AC 314 ms
58,572 KB
testcase_13 AC 334 ms
58,648 KB
testcase_14 AC 135 ms
54,132 KB
testcase_15 AC 144 ms
54,100 KB
testcase_16 AC 346 ms
58,656 KB
testcase_17 AC 386 ms
58,676 KB
testcase_18 AC 390 ms
58,808 KB
testcase_19 AC 399 ms
58,624 KB
testcase_20 AC 122 ms
54,024 KB
testcase_21 AC 123 ms
53,992 KB
testcase_22 AC 119 ms
54,116 KB
testcase_23 AC 116 ms
53,600 KB
testcase_24 AC 142 ms
54,456 KB
testcase_25 AC 172 ms
54,368 KB
testcase_26 AC 121 ms
53,848 KB
testcase_27 AC 121 ms
53,764 KB
testcase_28 AC 121 ms
53,804 KB
testcase_29 AC 271 ms
58,496 KB
testcase_30 AC 195 ms
56,668 KB
testcase_31 AC 122 ms
54,144 KB
testcase_32 AC 122 ms
54,488 KB
testcase_33 AC 123 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  k = sc.nextInt();
		int  n = sc.nextInt();
		int count=0;
		int[]  a = new int[n];
		
		// 配列の挿入
		for(int m=0;m < n;m++){
		a[m] = sc.nextInt();
		}
		
		// ソート
		for(int i=0;i<a.length-1;i++){
			
		// 下から上に順番に比較します
		for(int j=a.length-1;j>i;j--){
		
		// 上の方が大きいときは互いに入れ替えます
		if(a[j]<a[j-1]){
		int t=a[j];
		a[j]=a[j-1];
		a[j-1]=t;
		}
		}
		}
		
		for(int m=0;m < n;m++){
		if(k >= a[m]){
		k -= a[m];
		count += 1;
		}else{
		break;
		}
		}
		
		System.out.println(count);
	}
}
0