結果

問題 No.143 豆
ユーザー mondomondo
提出日時 2019-08-14 00:08:33
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 557 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 41,064 KB
最終ジャッジ日時 2024-07-23 11:17:42
合計ジャッジ時間 2,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

let main = (standardInput) => {
    var line = standardInput.trim().split("\n");
    var beansline  = line[0].trim().split(" ").map(Number);
    var membersline = line[1].trim().split(" ").map(Number);
    var beanssum = beansline[0] * beansline[1];
    var sum = membersline.reduce(function (accumulator, currentValue) {
    return accumulator + currentValue;
    }, 0);
    var ans = beanssum - sum;
    if (ans >= 0) {
        console.log(ans);    
    } else {
        console.log("-1");
    }
};
main(require('fs').readFileSync('/dev/stdin', 'UTF-8'));
0