結果
問題 | No.38 赤青白ブロック |
ユーザー | letrangerjp |
提出日時 | 2017-06-14 10:54:55 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 40,036 KB |
最終ジャッジ日時 | 2024-09-24 18:56:52 |
合計ジャッジ時間 | 8,078 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 252 ms
13,568 KB |
testcase_01 | AC | 827 ms
17,348 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 2,808 ms
28,620 KB |
testcase_04 | AC | 516 ms
15,420 KB |
testcase_05 | AC | 89 ms
12,288 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 | -- | - |
testcase_26 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
Kr, Kb = gets.split.take(2).map(&:to_i) S = gets.chomp def valid?(s) !s.size.times.any?{|i| case s[i] when ?R i - Kr >= 0 && s[i - Kr] == ?R when ?B i - Kb >= 0 && s[i - Kb] == ?B end } end $memo = {} def f(s) n = s.size $memo[s] ||= if valid?(s) n else n.times.map{|i| next 0 if s[i] == ?W t = s[0...i] + s[i + 1..-1] f(t) }.max end end p f(S)