結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
38,528 KB
testcase_01 AC 65 ms
39,040 KB
testcase_02 AC 63 ms
38,784 KB
testcase_03 AC 62 ms
38,656 KB
testcase_04 AC 65 ms
38,784 KB
testcase_05 AC 65 ms
38,784 KB
testcase_06 AC 66 ms
38,912 KB
testcase_07 AC 73 ms
40,704 KB
testcase_08 AC 137 ms
50,408 KB
testcase_09 AC 143 ms
55,792 KB
testcase_10 AC 207 ms
54,056 KB
testcase_11 AC 219 ms
58,420 KB
testcase_12 AC 223 ms
58,448 KB
testcase_13 AC 228 ms
58,728 KB
testcase_14 AC 200 ms
54,400 KB
testcase_15 AC 201 ms
54,676 KB
testcase_16 AC 214 ms
59,480 KB
testcase_17 AC 64 ms
38,656 KB
testcase_18 AC 64 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

  const first_line = data[0].split(' ')
  const second_line = data[1]

  const array = second_line.split(' ')

  const num = Number(first_line)

  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