結果

問題 No.5 数字のブロック
コンテスト
ユーザー barrett114514
提出日時 2017-07-21 22:54:21
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
WA  
実行時間 -
コード長 466 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,432 ms
コンパイル使用メモリ 86,276 KB
実行使用メモリ 49,316 KB
最終ジャッジ日時 2026-09-12 08:37:49
合計ジャッジ時間 7,888 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 7 RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.Arrays;
import java.util.Scanner;

public class NumberBlocks {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int N = sc.nextInt();
		int W[] = new int[N];
		
		for(int i = 0;i < N; i++){
			W[i] = sc.nextInt();
		}
		Arrays.sort(W);
		
		for(int i = 0;L > 0; i ++){
			L -= W[i];
			
			if(L < 0){
				if(i < 0){
				i --;
				}
				
				System.out.println(i);
				break;
			}
		}

	}

}
0