結果

問題 No.346 チワワ数え上げ問題
ユーザー n120aosssssssssn120aosssssssss
提出日時 2017-05-14 22:11:05
言語 PHP
(843.2)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 31,088 KB
実行使用メモリ 31,396 KB
最終ジャッジ日時 2024-09-16 05:52:20
合計ジャッジ時間 2,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,892 KB
testcase_01 AC 41 ms
31,280 KB
testcase_02 AC 41 ms
31,080 KB
testcase_03 AC 41 ms
31,020 KB
testcase_04 AC 42 ms
31,232 KB
testcase_05 AC 42 ms
31,132 KB
testcase_06 AC 42 ms
31,128 KB
testcase_07 AC 42 ms
31,284 KB
testcase_08 AC 41 ms
30,996 KB
testcase_09 AC 41 ms
31,028 KB
testcase_10 AC 48 ms
30,940 KB
testcase_11 AC 45 ms
31,340 KB
testcase_12 AC 47 ms
31,152 KB
testcase_13 AC 44 ms
31,084 KB
testcase_14 AC 40 ms
31,364 KB
testcase_15 AC 46 ms
30,932 KB
testcase_16 AC 47 ms
31,356 KB
testcase_17 AC 48 ms
31,396 KB
testcase_18 AC 48 ms
30,940 KB
testcase_19 AC 48 ms
31,220 KB
testcase_20 AC 48 ms
31,096 KB
testcase_21 AC 48 ms
31,128 KB
testcase_22 AC 48 ms
31,092 KB
testcase_23 AC 40 ms
31,208 KB
testcase_24 AC 41 ms
30,968 KB
testcase_25 AC 41 ms
31,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
 $string = trim(fgets(STDIN));
 //文字数
 $length = strlen($string);
 //指定開始位置からwの数
 $allwCnt = countW($string, $length);
 //チワワの数
 $cwCnt = 0;
 for($i = 0; $i < $length; $i++) {
 	if($string[$i] === 'c') {
 		$cwCnt += $allwCnt * ($allwCnt - 1) / 2;
 	} else if($string[$i] === 'w') {
 		$allwCnt--;
 	}
 }
 echo $cwCnt;
 echo PHP_EOL;
 
 function countW($string, $length) {
 	$wCnt = 0;
 	for($i = 0; $i < $length; $i++) {
 		if($string[$i] === 'w') {
 			$wCnt++;
 		}
 	}
 	return $wCnt;
 }
0