結果

問題 No.341 沈黙の期間
ユーザー yicodeyicode
提出日時 2023-05-22 14:47:51
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 42,172 KB
最終ジャッジ日時 2024-06-01 20:54:08
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
40,192 KB
testcase_01 AC 67 ms
42,036 KB
testcase_02 AC 66 ms
40,192 KB
testcase_03 AC 66 ms
40,320 KB
testcase_04 AC 67 ms
40,064 KB
testcase_05 AC 68 ms
42,172 KB
testcase_06 AC 68 ms
40,064 KB
testcase_07 AC 66 ms
39,936 KB
testcase_08 AC 64 ms
40,064 KB
testcase_09 AC 64 ms
41,836 KB
testcase_10 AC 63 ms
40,320 KB
testcase_11 AC 63 ms
42,104 KB
testcase_12 AC 68 ms
39,808 KB
testcase_13 AC 67 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

process.stdin.resume();
process.stdin.setEncoding('utf8');
// 自分の得意な言語で
// Let's チャレンジ!!
var lines = [];
var reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
reader.on('line', (line) => {
  lines.push(line);
});
reader.on('close', () => {
  let s = lines[0];
  let count = 0;
  let ans = 0;
  for(let i = 0;i < s.length; i++) {
    if(s[i] == '…') {
      count++;
    }else {
      ans = Math.max(ans,count);
      count = 0;
    }
  }
  ans = Math.max(ans,count);
  console.log(ans);
});
0