結果

問題 No.516 赤と青の風船
ユーザー 多賀悠人多賀悠人
提出日時 2021-06-13 16:32:26
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 8,209 ms
コンパイル使用メモリ 229,116 KB
実行使用メモリ 42,484 KB
最終ジャッジ日時 2024-12-31 16:38:07
合計ジャッジ時間 9,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
40,448 KB
testcase_01 AC 76 ms
40,448 KB
testcase_02 AC 75 ms
42,420 KB
testcase_03 AC 74 ms
40,320 KB
testcase_04 AC 75 ms
40,320 KB
testcase_05 AC 76 ms
42,484 KB
testcase_06 AC 75 ms
40,192 KB
testcase_07 AC 75 ms
42,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

export { }
let lines = [];
const reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
reader.on('line', function (line) {
  lines.push(line);
});
reader.on('close', function () {
  
  const sum: number = lines.map( line => line.trim().length).reduce( (accumulator, currentValue) => {
    return accumulator + currentValue
 }) 
 
 if (sum > 10 ) {
	console.log('BLUE')
  } else {
  console.log('RED')
  }
 
  
  // ここに処理を書いていく
  // 最後に結果をconsole.log()する
  // 例
 // const hoge: number = parseInt(lines[0])
  // const result: number = hoge * 2
  // console.log(result)
});
// 実行方法
// 下記コマンドでtsファイルをコンパイル & ウォッチ。コンパイルのみで良いなら、-wいらない
// tsc ファイル名 -w
// 下記コマンドでjsファイルを実行
// node ファイル名
// 入力したら改行
// 入力後、ctr + cで出力できる
// 僕の環境だと、npm i @types/nodeしろって言われたので、する必要ある可能性あり
0