結果

問題 No.516 赤と青の風船
ユーザー T AT A
提出日時 2021-06-11 06:49:42
言語 TypeScript
(5.4.3)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 475 bytes
コンパイル時間 6,790 ms
コンパイル使用メモリ 145,376 KB
最終ジャッジ日時 2024-05-08 00:38:56
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.ts(3,16): error TS2580: Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
main.ts(4,10): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
main.ts(5,11): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.

ソースコード

diff #

export { }
const lines = [];
const reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
})

reader.on('line', (line) => {
  lines.push(line)
})
reader.on('close', () => {

  const colorList: string[] = lines

  const redList: string[] = colorList.filter((color: string): boolean => {
    return (color === 'red' || color === 'RED' )
  })

  if (redList.length >= 2) {
    console.log('RED')
  } else {
    console.log('BLUE')
  }
})
0