結果

問題 No.5 数字のブロック
ユーザー n3k2t1n3k2t1
提出日時 2019-07-07 17:27:49
言語 JavaScript
(node v21.7.1)
結果
RE  
実行時間 -
コード長 643 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 444,168 KB
最終ジャッジ日時 2024-10-13 01:09:23
合計ジャッジ時間 9,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
39,808 KB
testcase_01 AC 68 ms
39,808 KB
testcase_02 AC 67 ms
39,680 KB
testcase_03 AC 1,473 ms
417,936 KB
testcase_04 AC 105 ms
52,696 KB
testcase_05 RE -
testcase_06 AC 761 ms
210,908 KB
testcase_07 AC 1,004 ms
301,992 KB
testcase_08 AC 714 ms
196,568 KB
testcase_09 AC 365 ms
105,812 KB
testcase_10 AC 978 ms
288,976 KB
testcase_11 AC 393 ms
112,208 KB
testcase_12 AC 1,408 ms
419,464 KB
testcase_13 AC 965 ms
286,848 KB
testcase_14 AC 130 ms
58,684 KB
testcase_15 AC 75 ms
46,584 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 1,333 ms
391,168 KB
testcase_19 RE -
testcase_20 AC 67 ms
40,320 KB
testcase_21 AC 69 ms
39,936 KB
testcase_22 AC 73 ms
41,976 KB
testcase_23 AC 65 ms
42,072 KB
testcase_24 AC 78 ms
48,460 KB
testcase_25 AC 268 ms
87,416 KB
testcase_26 AC 66 ms
42,196 KB
testcase_27 AC 66 ms
42,320 KB
testcase_28 AC 64 ms
40,320 KB
testcase_29 AC 98 ms
53,080 KB
testcase_30 AC 169 ms
72,692 KB
testcase_31 AC 67 ms
42,316 KB
testcase_32 AC 69 ms
40,064 KB
testcase_33 AC 67 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
let L, N, W;

//
process.stdin.resume();
process.stdin.setEncoding('utf8');

process.stdin.on('data', data => {
  const arr = data.split('\n');
  L = Number(arr[0]);
  N = Number(arr[1]);
  W = arr[2].split(' ').map(x => Number(x));
});

process.stdin.on('end', () => {
  const dp = new Array(N + 1);
  for (let i = 0; i < dp.length; i++) {
    dp[i] = new Array(L + 1).fill(0);
  }
  for (let i = 0; i < N; i++) {
    for (let j = 0; j <= L; j++) {
      if (j < W[i]) {
        dp[i + 1][j] = dp[i][j];
      } else {
        dp[i + 1][j] = Math.max(dp[i][j], dp[i][j - W[i]] + 1);
      }
    }
  }
  console.log(Math.max(dp[N][L]));
});
0