結果

問題 No.346 チワワ数え上げ問題
ユーザー ねずねず
提出日時 2018-01-27 07:11:05
言語 PHP
(843.2)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 4,692 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 31,592 KB
最終ジャッジ日時 2024-12-28 09:14:05
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,172 KB
testcase_01 AC 41 ms
31,404 KB
testcase_02 AC 41 ms
31,132 KB
testcase_03 AC 40 ms
31,252 KB
testcase_04 AC 41 ms
30,792 KB
testcase_05 AC 40 ms
30,852 KB
testcase_06 AC 41 ms
31,244 KB
testcase_07 AC 43 ms
31,048 KB
testcase_08 AC 39 ms
31,260 KB
testcase_09 AC 41 ms
31,352 KB
testcase_10 AC 48 ms
31,136 KB
testcase_11 AC 43 ms
31,048 KB
testcase_12 AC 45 ms
31,592 KB
testcase_13 AC 45 ms
31,128 KB
testcase_14 AC 41 ms
31,328 KB
testcase_15 AC 46 ms
31,176 KB
testcase_16 AC 44 ms
30,852 KB
testcase_17 AC 46 ms
31,180 KB
testcase_18 AC 45 ms
31,416 KB
testcase_19 AC 48 ms
31,240 KB
testcase_20 AC 47 ms
31,092 KB
testcase_21 AC 45 ms
31,100 KB
testcase_22 AC 47 ms
30,980 KB
testcase_23 AC 41 ms
31,264 KB
testcase_24 AC 41 ms
31,072 KB
testcase_25 AC 41 ms
30,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$cntW = 0;
$ans = 0;
for ($i = strlen($s) - 1; $i >= 0; $i--) {
	if ($s[$i] == 'w') {
		$cntW++;
		continue;
	} else if ($s[$i] == 'c') {
		$ans += $cntW * ($cntW - 1) / 2;
	}
}
print $ans;
?>
0