結果

問題 No.5 数字のブロック
ユーザー キョウチクキョウチク
提出日時 2022-05-19 16:39:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 3,776 ms
コンパイル使用メモリ 85,852 KB
実行使用メモリ 43,836 KB
最終ジャッジ日時 2024-09-18 19:55:13
合計ジャッジ時間 11,117 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,268 KB
testcase_01 AC 127 ms
41,268 KB
testcase_02 AC 114 ms
39,792 KB
testcase_03 AC 187 ms
42,196 KB
testcase_04 AC 176 ms
41,852 KB
testcase_05 AC 208 ms
43,000 KB
testcase_06 AC 201 ms
42,492 KB
testcase_07 AC 194 ms
42,160 KB
testcase_08 AC 196 ms
42,544 KB
testcase_09 AC 180 ms
41,640 KB
testcase_10 AC 219 ms
43,192 KB
testcase_11 AC 185 ms
42,028 KB
testcase_12 AC 206 ms
42,888 KB
testcase_13 AC 216 ms
43,248 KB
testcase_14 AC 140 ms
41,288 KB
testcase_15 AC 138 ms
41,316 KB
testcase_16 AC 216 ms
43,416 KB
testcase_17 AC 223 ms
43,464 KB
testcase_18 AC 224 ms
43,836 KB
testcase_19 AC 223 ms
43,460 KB
testcase_20 AC 140 ms
41,500 KB
testcase_21 AC 134 ms
41,512 KB
testcase_22 AC 136 ms
41,312 KB
testcase_23 AC 136 ms
41,604 KB
testcase_24 AC 147 ms
41,344 KB
testcase_25 AC 157 ms
41,584 KB
testcase_26 AC 136 ms
41,032 KB
testcase_27 AC 138 ms
41,280 KB
testcase_28 AC 136 ms
41,444 KB
testcase_29 AC 185 ms
42,004 KB
testcase_30 AC 183 ms
41,844 KB
testcase_31 AC 142 ms
41,080 KB
testcase_32 AC 146 ms
40,916 KB
testcase_33 AC 137 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int w=Integer.parseInt(line[0]);
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    int m=0,size=0;
    int[] block=new int[n];
    line=sc.nextLine().split(" ");
    for(int i=0;i<n;i++){
      block[i]=Integer.parseInt(line[i]);
    }
    Arrays.sort(block);
    for(int i=0;i<n;i++){
      size+=block[i];
      if(w<size){
        break;
      }
      m++;
    }
    String result=""+m;
    System.out.println(result);
  }
}
0