結果

問題 No.346 チワワ数え上げ問題
ユーザー code-devocode-devo
提出日時 2016-02-26 22:32:04
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 261 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 91,932 KB
最終ジャッジ日時 2024-09-22 14:09:44
合計ジャッジ時間 12,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
19,228 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 AC 85 ms
12,416 KB
testcase_06 AC 86 ms
12,416 KB
testcase_07 AC 85 ms
12,288 KB
testcase_08 AC 85 ms
12,288 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 1,138 ms
54,656 KB
testcase_11 AC 465 ms
40,192 KB
testcase_12 AC 732 ms
44,288 KB
testcase_13 AC 371 ms
34,048 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 658 ms
40,960 KB
testcase_16 AC 839 ms
55,808 KB
testcase_17 AC 1,136 ms
48,124 KB
testcase_18 AC 1,098 ms
51,496 KB
testcase_19 AC 893 ms
49,536 KB
testcase_20 AC 163 ms
13,056 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp

h = Hash.new{|s,k| s[k] = []}

for i in 0..(s.length-1) do
  case s[i]
  when "c" then h["c"] << i
  when "w" then h["w"] << i
  end
end

count = 0
h["c"].each do |i|
  ws = h["w"].select{|j| j > i}.size
  count += ws * (ws-1) / 2
end
puts count
0