結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー arito_asuarito_asu
提出日時 2020-06-13 20:40:10
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 59,476 KB
最終ジャッジ日時 2024-06-25 20:34:46
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
38,656 KB
testcase_01 AC 59 ms
38,784 KB
testcase_02 AC 60 ms
38,656 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 136 ms
56,044 KB
testcase_10 AC 204 ms
54,184 KB
testcase_11 AC 222 ms
58,424 KB
testcase_12 AC 217 ms
58,576 KB
testcase_13 AC 220 ms
58,728 KB
testcase_14 AC 192 ms
54,528 KB
testcase_15 AC 196 ms
54,676 KB
testcase_16 AC 208 ms
59,476 KB
testcase_17 AC 61 ms
38,784 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    var inp = input.split("\n");
    var sum = 0n;
    for(var i = 1; i < inp.length-1; i++) {
        sum = sum + BigInt(inp[i]);
    }
    console.log(parseInt(sum));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0