結果

問題 No.346 チワワ数え上げ問題
ユーザー cympfhcympfh
提出日時 2016-02-29 15:12:09
言語 Ruby
(3.4.1)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-12-26 06:02:59
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
12,032 KB
testcase_01 AC 112 ms
12,032 KB
testcase_02 AC 109 ms
12,288 KB
testcase_03 AC 106 ms
11,904 KB
testcase_04 AC 107 ms
12,032 KB
testcase_05 AC 104 ms
12,032 KB
testcase_06 AC 110 ms
12,032 KB
testcase_07 AC 108 ms
12,160 KB
testcase_08 AC 109 ms
11,904 KB
testcase_09 AC 110 ms
11,904 KB
testcase_10 AC 194 ms
20,992 KB
testcase_11 AC 158 ms
17,024 KB
testcase_12 AC 179 ms
17,664 KB
testcase_13 AC 149 ms
16,640 KB
testcase_14 AC 122 ms
12,416 KB
testcase_15 AC 167 ms
17,280 KB
testcase_16 AC 182 ms
19,456 KB
testcase_17 AC 196 ms
21,248 KB
testcase_18 AC 194 ms
20,992 KB
testcase_19 AC 185 ms
19,712 KB
testcase_20 AC 197 ms
20,864 KB
testcase_21 AC 193 ms
20,992 KB
testcase_22 AC 201 ms
20,864 KB
testcase_23 AC 110 ms
12,032 KB
testcase_24 AC 108 ms
11,904 KB
testcase_25 AC 109 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s=gets.chomp.chars
y=s.count{|c|c=='w'}
a=0
s.map{|c|y-=1 if c=='w'
a+=y*(y-1)/2 if c=='c'}
p a
0