結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー intercept6intercept6
提出日時 2020-07-09 15:29:12
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 500 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 59,604 KB
最終ジャッジ日時 2024-10-07 05:39:52
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
38,912 KB
testcase_01 AC 54 ms
39,296 KB
testcase_02 AC 54 ms
38,912 KB
testcase_03 AC 55 ms
38,912 KB
testcase_04 AC 56 ms
39,296 KB
testcase_05 AC 55 ms
39,168 KB
testcase_06 AC 57 ms
39,296 KB
testcase_07 AC 66 ms
40,960 KB
testcase_08 AC 97 ms
51,044 KB
testcase_09 AC 127 ms
56,044 KB
testcase_10 AC 189 ms
54,308 KB
testcase_11 AC 204 ms
58,424 KB
testcase_12 AC 202 ms
58,704 KB
testcase_13 AC 202 ms
58,852 KB
testcase_14 AC 176 ms
54,780 KB
testcase_15 AC 180 ms
54,800 KB
testcase_16 AC 194 ms
59,604 KB
testcase_17 AC 56 ms
39,040 KB
testcase_18 AC 56 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/9009

function Main(input) {
  // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。

  const data = input.split('\n')

  const num = Number(data[0].split(' '))
  const array = data[1].split(' ')

  let res = 0n
  for (i = 0; i < num; i++) {
    res += BigInt(data[i + 1])
  }

  console.log(String(res))
}

// Don't edit this line!
Main(require('fs').readFileSync('/dev/stdin', 'utf8'))
0