結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー intercept6intercept6
提出日時 2020-07-16 09:47:59
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 7,761 ms
コンパイル使用メモリ 230,172 KB
実行使用メモリ 59,784 KB
最終ジャッジ日時 2024-12-31 16:15:26
合計ジャッジ時間 12,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
39,424 KB
testcase_01 AC 63 ms
39,168 KB
testcase_02 AC 59 ms
39,168 KB
testcase_03 AC 58 ms
39,168 KB
testcase_04 AC 58 ms
39,168 KB
testcase_05 AC 60 ms
39,168 KB
testcase_06 AC 60 ms
39,424 KB
testcase_07 AC 79 ms
45,696 KB
testcase_08 AC 122 ms
51,804 KB
testcase_09 AC 164 ms
55,812 KB
testcase_10 AC 309 ms
54,296 KB
testcase_11 AC 324 ms
54,440 KB
testcase_12 AC 321 ms
54,840 KB
testcase_13 AC 328 ms
54,772 KB
testcase_14 AC 331 ms
55,208 KB
testcase_15 AC 340 ms
55,012 KB
testcase_16 AC 374 ms
59,784 KB
testcase_17 AC 59 ms
39,040 KB
testcase_18 AC 61 ms
39,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import { readFileSync } from 'fs';

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

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

  const array = data[1].split(' ');

  const reducer = (accumulator: string, currentValue: string) => {
    return String(BigInt(accumulator) + BigInt(currentValue));
  };

  console.log(array.reduce(reducer));
}

Main(readFileSync('/dev/stdin', 'utf8'));
0