結果

問題 No.346 チワワ数え上げ問題
ユーザー motimoti
提出日時 2018-05-26 01:22:08
言語 Perl
(5.40.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 27 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-06-28 18:07:28
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my $l = <>; chomp $l;
my @arr = split//,$l;

my @wcount;
push @wcount, 0;
for (my $i = 0; $i < @arr; $i++) {
  my $isw = $arr[$i] eq 'w' ? 1 : 0;
  push @wcount, $wcount[$i] + $isw;
}
my $maxw = $wcount[@wcount - 1];
my $ans = 0;
for (my $i = 0; $i < @arr; $i++) {
  my $right_wcnt = $maxw - $wcount[$i + 1];
  $ans += $right_wcnt * ($right_wcnt - 1) / 2 if $arr[$i] eq 'c';
}
print $ans;
0