結果

問題 No.5 数字のブロック
ユーザー Takuya ItoTakuya Ito
提出日時 2022-12-13 08:22:32
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 8,178 ms
コンパイル使用メモリ 228,748 KB
実行使用メモリ 47,728 KB
最終ジャッジ日時 2024-12-31 16:48:22
合計ジャッジ時間 11,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
39,424 KB
testcase_01 AC 65 ms
39,296 KB
testcase_02 WA -
testcase_03 AC 78 ms
44,672 KB
testcase_04 AC 75 ms
43,904 KB
testcase_05 AC 86 ms
45,184 KB
testcase_06 AC 77 ms
43,904 KB
testcase_07 AC 74 ms
43,520 KB
testcase_08 AC 79 ms
44,800 KB
testcase_09 AC 68 ms
43,008 KB
testcase_10 AC 86 ms
47,728 KB
testcase_11 AC 74 ms
43,648 KB
testcase_12 AC 81 ms
44,928 KB
testcase_13 AC 83 ms
45,056 KB
testcase_14 AC 65 ms
39,680 KB
testcase_15 AC 66 ms
39,424 KB
testcase_16 AC 85 ms
45,568 KB
testcase_17 AC 87 ms
45,696 KB
testcase_18 AC 88 ms
45,696 KB
testcase_19 AC 90 ms
45,568 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 65 ms
39,680 KB
testcase_24 AC 66 ms
39,552 KB
testcase_25 AC 69 ms
43,008 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 75 ms
43,648 KB
testcase_30 AC 71 ms
45,300 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input: string): void {
  const inputArr: string[] = input.split('\n');

  const boxWidth: number = parseInt(inputArr[0]);
  const blocksWidth: number[] = inputArr[2].split(' ')
    .map(str => parseInt(str))
    .sort((a, b) => a - b);

  let sum = 0;
  // 何個入るか をindexを使って表現したいが、ループ途中でbreakもしたいのでArray.forEach()が使えない
  // そのため、 for of + Object.entries()を採用
  for (const [index, blockWidth] of Object.entries(blocksWidth)) {
    sum += blockWidth;
    if (sum > boxWidth) {
      console.log(parseInt(index));
      break;
    }
  }
}

Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0