結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー f Oxf Ox
提出日時 2021-04-11 18:01:06
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 59,524 KB
最終ジャッジ日時 2024-06-27 12:41:50
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
39,040 KB
testcase_01 AC 62 ms
38,912 KB
testcase_02 AC 62 ms
38,784 KB
testcase_03 AC 62 ms
38,912 KB
testcase_04 AC 63 ms
38,912 KB
testcase_05 AC 63 ms
38,912 KB
testcase_06 AC 63 ms
39,040 KB
testcase_07 AC 74 ms
40,704 KB
testcase_08 AC 104 ms
50,908 KB
testcase_09 AC 131 ms
53,120 KB
testcase_10 AC 185 ms
54,196 KB
testcase_11 AC 192 ms
54,184 KB
testcase_12 AC 189 ms
54,460 KB
testcase_13 AC 197 ms
54,484 KB
testcase_14 AC 198 ms
54,684 KB
testcase_15 AC 201 ms
54,744 KB
testcase_16 AC 221 ms
59,524 KB
testcase_17 AC 62 ms
38,784 KB
testcase_18 AC 62 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  const data = input.split("\n");
  const N = data[0];
  const arrayNums = data[1].split(" ");
    
  let sum = BigInt(0);

  for (i=0; i<N; i++) {
    sum = BigInt(arrayNums[i]) + sum;
  }

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