結果

問題 No.495 (^^*) Easy
ユーザー n120aosssssssssn120aosssssssss
提出日時 2017-05-14 17:52:41
言語 PHP
(843.2)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,172 KB
最終ジャッジ日時 2024-09-16 05:50:56
合計ジャッジ時間 1,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,096 KB
testcase_01 AC 37 ms
31,144 KB
testcase_02 AC 38 ms
31,100 KB
testcase_03 AC 38 ms
31,132 KB
testcase_04 AC 35 ms
31,172 KB
testcase_05 AC 35 ms
31,092 KB
testcase_06 AC 36 ms
31,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $string = trim(fgets(STDIN));
    $length = strlen($string);
    $r = 0;
    $l = 0;
    for($i = 0; $i < $length - 5; $i += 5) {
    	if($string[$i+1] === '*') {
    		$r++;	
    	} else {
    		$l++;
    	}
    }
    echo $l." ".$r.PHP_EOL;
0