結果
問題 | No.5 数字のブロック |
ユーザー | kl |
提出日時 | 2020-09-30 10:45:29 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 2,021 ms |
コンパイル使用メモリ | 74,444 KB |
実行使用メモリ | 47,612 KB |
最終ジャッジ日時 | 2024-07-05 17:48:34 |
合計ジャッジ時間 | 9,347 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 WA * 7 |
ソースコード
import java.util.*; public class Main{ 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]; int result=0; int count=0; for(int i=0;i<n;i++){ w[i]=sc.nextInt(); } Arrays.sort(w); for(int i=0;i<n;i++){ result+=w[i]; if(result>=l){ break; } count++; } System.out.println(count); } }