結果

問題 No.5 数字のブロック
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:30:43
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 525 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 47,292 KB
最終ジャッジ日時 2024-06-30 17:49:07
合計ジャッジ時間 11,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,016 KB
testcase_01 AC 120 ms
40,864 KB
testcase_02 RE -
testcase_03 AC 339 ms
46,768 KB
testcase_04 AC 298 ms
47,016 KB
testcase_05 AC 402 ms
47,116 KB
testcase_06 AC 318 ms
46,992 KB
testcase_07 AC 258 ms
45,836 KB
testcase_08 AC 333 ms
47,000 KB
testcase_09 AC 212 ms
43,564 KB
testcase_10 AC 419 ms
47,292 KB
testcase_11 AC 277 ms
46,820 KB
testcase_12 AC 324 ms
46,912 KB
testcase_13 AC 392 ms
46,620 KB
testcase_14 AC 131 ms
41,272 KB
testcase_15 AC 148 ms
41,640 KB
testcase_16 AC 427 ms
46,928 KB
testcase_17 AC 463 ms
47,192 KB
testcase_18 AC 457 ms
47,016 KB
testcase_19 AC 471 ms
47,000 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 121 ms
41,072 KB
testcase_24 AC 139 ms
41,672 KB
testcase_25 AC 175 ms
41,936 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 289 ms
46,800 KB
testcase_30 AC 213 ms
43,896 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no5{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int l,n,a=0,i,j,t,s=0,w[]=new int[10000];
		l=stdIn.nextInt();
		n=stdIn.nextInt();
		for(i=0;i<n;i++) {
			w[i]=stdIn.nextInt();
			s+=w[i];
		}
		for(i=0;i<n-1;i++) {
			for(j=n-1;j>i;j--) {
				if(w[j-1]>w[j]) {
					t=w[j-1];
					w[j-1]=w[j];
					w[j]=t;
				}
			}
		}
		for(i=0;;i++) if(l<(a+=w[i])) break;
		if(l<s) System.out.print(i);
		else System.out.print(n);
	}
}
0