結果

問題 No.289 数字を全て足そう
ユーザー intercept6intercept6
提出日時 2020-09-17 20:48:10
言語 TypeScript
(5.4.3)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 455 bytes
コンパイル時間 5,152 ms
コンパイル使用メモリ 146,432 KB
最終ジャッジ日時 2024-06-22 06:48:16
合計ジャッジ時間 6,056 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.ts(1,30): error TS2307: Cannot find module 'fs' or its corresponding type declarations.

ソースコード

diff #

import { readFileSync } from 'fs';

function Main(input: string) {
  const data = input.split('\n');

  const line = data[0].split('').map((value) => {
    const num = parseInt(value);
    if (isNaN(num)) {
      return 0;
    } else {
      return num;
    }
  });
  function reducer(accumulator: number, currentValue: number) {
    return accumulator + currentValue;
  }
  console.log(line.reduce(reducer));
}

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