結果

問題 No.346 チワワ数え上げ問題
ユーザー 重荷重荷
提出日時 2016-03-17 22:21:01
言語 PHP
(843.2)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 36,664 KB
最終ジャッジ日時 2024-10-01 08:53:37
合計ジャッジ時間 2,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$str = trim(fgets(STDIN));

$c_list = str_split($str);
$cnt=0;
$wCnt=0;
$count=0;
for ($i = strlen($str)-1; $i >= 0; $i--)
{
    if ($c_list[$i] == 'w'){
        $wCnt++;
    }
    if ($c_list[$i] == 'c'){
        $cnt += $wCnt * ($wCnt - 1) / 2;
    }
}

printf("$cnt");
0