結果

問題 No.143 豆
ユーザー f Oxf Ox
提出日時 2021-04-14 22:08:31
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 685 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 41,076 KB
最終ジャッジ日時 2024-06-30 20:54:16
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
39,040 KB
testcase_01 AC 67 ms
39,296 KB
testcase_02 AC 66 ms
39,168 KB
testcase_03 AC 66 ms
39,168 KB
testcase_04 AC 66 ms
39,424 KB
testcase_05 AC 65 ms
39,168 KB
testcase_06 AC 66 ms
41,076 KB
testcase_07 AC 64 ms
39,040 KB
testcase_08 AC 65 ms
39,168 KB
testcase_09 AC 65 ms
39,040 KB
testcase_10 AC 66 ms
39,168 KB
testcase_11 AC 64 ms
39,424 KB
testcase_12 AC 64 ms
39,424 KB
testcase_13 AC 66 ms
39,168 KB
testcase_14 AC 66 ms
39,168 KB
testcase_15 AC 64 ms
39,168 KB
testcase_16 AC 65 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  const data = input.split("\n");

  const dataBase = data[0].split(" "); // 1行目の配列
  const K = Number(dataBase[0]); // 1袋の粒数
  const N = Number(dataBase[1]); // 袋の数
  const F = Number(dataBase[2]); // 家族の人数

  const dataAge = data[1].split(" "); // 2行目の配列
  const age = dataAge.map(Number); // 配列を文字列から数値に変換する。

  const amountBeen = K*N; // ある粒数
  const needBeen = age.reduce((a,b)=>a+b); // 必要な粒数

  if ((amountBeen-needBeen)>=0) {
    console.log(amountBeen-needBeen);
  } else {
    console.log(-1);
  }


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