結果

問題 No.341 沈黙の期間
ユーザー papinianuspapinianus
提出日時 2016-07-28 09:27:33
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 524 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-11-06 18:06:27
合計ジャッジ時間 1,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
32,472 KB
testcase_01 AC 43 ms
32,532 KB
testcase_02 AC 43 ms
32,656 KB
testcase_03 AC 43 ms
32,528 KB
testcase_04 AC 43 ms
32,404 KB
testcase_05 AC 42 ms
32,528 KB
testcase_06 AC 43 ms
32,532 KB
testcase_07 AC 42 ms
32,404 KB
testcase_08 AC 43 ms
32,528 KB
testcase_09 AC 42 ms
32,528 KB
testcase_10 AC 43 ms
32,656 KB
testcase_11 AC 42 ms
32,272 KB
testcase_12 AC 42 ms
32,528 KB
testcase_13 AC 42 ms
32,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$str = preg_split("//u", trim(fgets(STDIN)));
$len = count($str);
$start = false;
$max = 0;
$cnt = 0;
for($i = 0; $i < $len; $i++) {
    if($str[$i]=="…") {
        if(!$start) { 
            $start = true;
            $cnt = 1;
        } else {
            $cnt++;
        }
    } else {
        if($start) {
            $max = max($max, $cnt);
            $start = false;
            $cnt = 0;
        }
    }
}
if($start) {
    $max = max($max, $cnt);
    $start = false;
    $cnt = 0;
}
echo $max;

echo PHP_EOL;
0