結果

問題 No.346 チワワ数え上げ問題
ユーザー code-devocode-devo
提出日時 2016-02-26 22:25:45
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 297 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 11,848 KB
実行使用メモリ 20,744 KB
最終ジャッジ日時 2023-10-23 20:26:12
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
16,240 KB
testcase_01 AC 85 ms
16,172 KB
testcase_02 AC 80 ms
16,072 KB
testcase_03 AC 82 ms
16,072 KB
testcase_04 AC 109 ms
16,172 KB
testcase_05 AC 80 ms
16,072 KB
testcase_06 AC 115 ms
16,172 KB
testcase_07 AC 90 ms
16,172 KB
testcase_08 AC 93 ms
16,172 KB
testcase_09 AC 127 ms
16,172 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#10万ぐらいいけるやろ・・・
s = gets.chomp

count = 0
for i in 0..(s.length-3) do
  next unless s[i] == "c"
  for j in (i+1)..(s.length-2) do
    next unless s[j] == "w"
    for k in (j+1)..(s.length-1) do
       next unless s[k] == "w"
       count += 1
    end
  end
end

puts count
0