結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー swyroakswyroak
提出日時 2021-07-31 00:03:27
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 311 ms / 3,000 ms
コード長 393 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 78,940 KB
最終ジャッジ日時 2024-09-16 04:16:29
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
39,040 KB
testcase_01 AC 56 ms
39,168 KB
testcase_02 AC 55 ms
39,040 KB
testcase_03 AC 55 ms
38,912 KB
testcase_04 AC 56 ms
38,912 KB
testcase_05 AC 56 ms
39,040 KB
testcase_06 AC 64 ms
39,040 KB
testcase_07 AC 73 ms
44,928 KB
testcase_08 AC 101 ms
52,328 KB
testcase_09 AC 144 ms
60,272 KB
testcase_10 AC 300 ms
73,772 KB
testcase_11 AC 286 ms
74,172 KB
testcase_12 AC 294 ms
74,708 KB
testcase_13 AC 307 ms
75,420 KB
testcase_14 AC 296 ms
75,524 KB
testcase_15 AC 304 ms
76,184 KB
testcase_16 AC 311 ms
78,940 KB
testcase_17 AC 55 ms
38,912 KB
testcase_18 AC 55 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"use strict";
function Main(input) {
    const series = input.split("\n").map(i => BigInt(i)).slice(1);
    const ans = series.reduce((accum, value) => {
        return accum + value;
    }, BigInt(0));
    console.log(String(ans));
}
//テストの入力を受け取る
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
//Main("5\n5\n5\n5");
//# sourceMappingURL=index.js.map
0