結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | code-devo |
提出日時 | 2016-02-26 22:25:45 |
言語 | Ruby (3.4.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 297 bytes |
コンパイル時間 | 43 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 19,484 KB |
最終ジャッジ日時 | 2024-09-22 14:05:12 |
合計ジャッジ時間 | 4,889 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 143 ms
19,484 KB |
testcase_01 | AC | 98 ms
12,544 KB |
testcase_02 | AC | 90 ms
12,160 KB |
testcase_03 | AC | 90 ms
12,288 KB |
testcase_04 | AC | 121 ms
12,288 KB |
testcase_05 | AC | 88 ms
12,160 KB |
testcase_06 | AC | 127 ms
12,288 KB |
testcase_07 | AC | 101 ms
12,288 KB |
testcase_08 | AC | 104 ms
12,288 KB |
testcase_09 | AC | 140 ms
12,544 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
ソースコード
#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