結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー DOEtoGuitarDOEtoGuitar
提出日時 2018-06-19 22:36:33
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 51,844 KB
最終ジャッジ日時 2024-04-21 02:09:43
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
39,424 KB
testcase_01 AC 68 ms
39,296 KB
testcase_02 AC 66 ms
39,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 137 ms
48,644 KB
testcase_10 AC 131 ms
50,448 KB
testcase_11 AC 128 ms
50,600 KB
testcase_12 AC 119 ms
50,860 KB
testcase_13 AC 121 ms
50,920 KB
testcase_14 AC 126 ms
51,100 KB
testcase_15 AC 126 ms
51,164 KB
testcase_16 AC 130 ms
51,844 KB
testcase_17 AC 66 ms
39,680 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {

  const data = input.split("\n");
  const N = data[0];
  const second_line = data[1];
  const A = second_line.split(" ");
  let C = 0;

  for (let i = 0; i < A.length; i++) {
    const B = parseInt(A[i]);
    C += parseInt(A[i]);
  }
  console.log(C);
}
main(require("fs").readFileSync("/dev/stdin", "utf8"));
0