結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | suppy193 |
提出日時 | 2016-04-11 13:43:44 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 491 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 20,128 KB |
最終ジャッジ日時 | 2024-10-04 06:05:00 |
合計ジャッジ時間 | 6,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 258 ms
19,488 KB |
testcase_01 | AC | 101 ms
12,288 KB |
testcase_02 | AC | 90 ms
12,160 KB |
testcase_03 | AC | 90 ms
12,416 KB |
testcase_04 | AC | 173 ms
12,288 KB |
testcase_05 | AC | 88 ms
12,288 KB |
testcase_06 | AC | 201 ms
12,544 KB |
testcase_07 | AC | 116 ms
12,672 KB |
testcase_08 | AC | 122 ms
12,672 KB |
testcase_09 | AC | 243 ms
12,544 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def dfs(s, cww) if cww == "cww" @count += 1 return end return if s.length == 0 if cww == "" if s[0] == "c" dfs(s[1..-1], "c") dfs(s[1..-1], "") else dfs(s[1..-1], "") end elsif cww == "c" if s[0] == "w" dfs(s[1..-1], "cw") dfs(s[1..-1], "c") else dfs(s[1..-1], "c") end elsif cww == "cw" if s[0] == "w" dfs(s[1..-1], "cww") dfs(s[1..-1], "cw") else dfs(s[1..-1], "cw") end end end @count = 0 s = gets.strip #puts s dfs(s, "") p @count