結果

問題 No.533 Mysterious Stairs
ユーザー letrangerjpletrangerjp
提出日時 2017-06-23 23:21:58
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 811,520 KB
最終ジャッジ日時 2024-10-04 08:03:39
合計ジャッジ時間 13,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,416 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 93 ms
12,288 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 92 ms
12,288 KB
testcase_11 AC 94 ms
12,544 KB
testcase_12 AC 97 ms
12,672 KB
testcase_13 AC 99 ms
13,184 KB
testcase_14 AC 98 ms
13,184 KB
testcase_15 AC 106 ms
13,696 KB
testcase_16 AC 121 ms
15,232 KB
testcase_17 AC 142 ms
17,536 KB
testcase_18 AC 178 ms
20,736 KB
testcase_19 AC 193 ms
22,144 KB
testcase_20 AC 1,577 ms
134,788 KB
testcase_21 AC 1,789 ms
148,088 KB
testcase_22 TLE -
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M = 10**9+7

$dp = {}
def f(n, i, level=0)
  $dp[[n,i]] ||= if n == 0
    1
  elsif n < 0
    0
  else
    [1,2,3].map{|j|
      if j == i
       0
      elsif level > 200
        Fiber.new { f(n - j, j, 0) }.resume
      else
        f(n - j, j, level+1)
      end
    }.sum % M
  end
end

N = gets.to_i
p f(N, 0)
0