結果

問題 No.5 数字のブロック
ユーザー 水野嶺水野嶺
提出日時 2020-05-20 16:37:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 58,860 KB
最終ジャッジ日時 2024-10-01 23:37:44
合計ジャッジ時間 11,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,388 KB
testcase_01 AC 135 ms
54,196 KB
testcase_02 WA -
testcase_03 AC 355 ms
58,740 KB
testcase_04 AC 316 ms
58,508 KB
testcase_05 WA -
testcase_06 AC 345 ms
58,636 KB
testcase_07 AC 324 ms
58,512 KB
testcase_08 AC 344 ms
58,844 KB
testcase_09 AC 244 ms
56,960 KB
testcase_10 AC 415 ms
58,784 KB
testcase_11 AC 308 ms
58,856 KB
testcase_12 AC 356 ms
58,680 KB
testcase_13 AC 391 ms
58,584 KB
testcase_14 AC 145 ms
54,368 KB
testcase_15 WA -
testcase_16 AC 397 ms
58,672 KB
testcase_17 AC 438 ms
58,756 KB
testcase_18 AC 447 ms
58,860 KB
testcase_19 AC 464 ms
58,820 KB
testcase_20 AC 133 ms
54,052 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 134 ms
54,472 KB
testcase_24 AC 166 ms
54,320 KB
testcase_25 AC 186 ms
54,544 KB
testcase_26 AC 133 ms
54,160 KB
testcase_27 AC 134 ms
54,300 KB
testcase_28 AC 135 ms
53,972 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 117 ms
53,064 KB
testcase_32 AC 132 ms
53,820 KB
testcase_33 AC 132 ms
54,192 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