結果
問題 | No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | intercept6 |
提出日時 | 2020-07-16 09:47:59 |
言語 | TypeScript (5.4.3) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 491 bytes |
コンパイル時間 | 6,628 ms |
コンパイル使用メモリ | 144,880 KB |
最終ジャッジ日時 | 2024-05-03 07:34:48 |
合計ジャッジ時間 | 7,197 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.ts(1,30): error TS2307: Cannot find module 'fs' or its corresponding type declarations.
ソースコード
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'));