結果

問題 No.639 An Ordinary Sequence
ユーザー simansiman
提出日時 2021-09-06 10:55:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 161 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 11,348 KB
実行使用メモリ 15,344 KB
最終ジャッジ日時 2023-08-24 05:33:38
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
15,036 KB
testcase_01 AC 80 ms
15,056 KB
testcase_02 AC 82 ms
15,248 KB
testcase_03 AC 81 ms
15,232 KB
testcase_04 AC 83 ms
15,300 KB
testcase_05 AC 83 ms
15,344 KB
testcase_06 AC 84 ms
15,152 KB
testcase_07 AC 84 ms
15,344 KB
testcase_08 AC 83 ms
15,048 KB
testcase_09 AC 80 ms
15,052 KB
testcase_10 AC 79 ms
15,188 KB
testcase_11 AC 79 ms
14,996 KB
testcase_12 AC 80 ms
15,152 KB
testcase_13 AC 79 ms
15,080 KB
testcase_14 AC 80 ms
15,276 KB
testcase_15 AC 81 ms
15,156 KB
testcase_16 AC 82 ms
15,300 KB
testcase_17 AC 83 ms
15,084 KB
testcase_18 AC 83 ms
15,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

def f(x, memo)
  return 1 if x == 0
  return memo[x] if memo[x]

  memo[x] = f(x / 3, memo) + f(x / 5, memo)
end

memo = Hash.new
puts f(N, memo)
0