結果

問題 No.341 沈黙の期間
ユーザー yukster714yukster714
提出日時 2023-05-19 23:22:18
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 106 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 7,112 KB
実行使用メモリ 4,824 KB
最終ジャッジ日時 2023-08-23 01:14:05
合計ジャッジ時間 902 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
4,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 3 ms
4,624 KB
testcase_12 WA -
testcase_13 AC 2 ms
4,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$max =0;
$s=<>;
while($s=~/(…+)/g){
    $len =length($&)/3;
    $max=$len if$max<$len;
}
print $max,$/;
0