結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yanaoyanao
提出日時 2020-07-09 15:28:21
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 206 ms / 3,000 ms
コード長 194 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 6,696 KB
実行使用メモリ 59,396 KB
最終ジャッジ日時 2024-10-07 05:37:59
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
38,784 KB
testcase_01 AC 55 ms
38,784 KB
testcase_02 AC 55 ms
38,912 KB
testcase_03 AC 54 ms
38,656 KB
testcase_04 AC 55 ms
38,784 KB
testcase_05 AC 54 ms
38,784 KB
testcase_06 AC 56 ms
38,784 KB
testcase_07 AC 63 ms
40,576 KB
testcase_08 AC 99 ms
50,792 KB
testcase_09 AC 130 ms
55,660 KB
testcase_10 AC 188 ms
54,176 KB
testcase_11 AC 193 ms
58,292 KB
testcase_12 AC 198 ms
58,312 KB
testcase_13 AC 206 ms
58,752 KB
testcase_14 AC 177 ms
54,400 KB
testcase_15 AC 188 ms
54,524 KB
testcase_16 AC 189 ms
59,396 KB
testcase_17 AC 58 ms
38,912 KB
testcase_18 AC 56 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const row = require('fs').readFileSync('/dev/stdin', 'utf8').split('\n');

let sum = BigInt(0);
for (i = 1; i < row.length - 1; i++) {
    sum = sum + BigInt(row[i]);
}
console.log(String(sum));
0