結果

問題 No.639 An Ordinary Sequence
ユーザー horiesinitihoriesiniti
提出日時 2018-03-28 10:20:01
言語 Ruby
(3.4.1)
結果
AC  
実行時間 644 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 8,192 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2025-01-02 02:36:39
合計ジャッジ時間 10,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 616 ms
20,608 KB
testcase_01 AC 644 ms
20,480 KB
testcase_02 AC 360 ms
20,864 KB
testcase_03 AC 361 ms
20,608 KB
testcase_04 AC 374 ms
20,608 KB
testcase_05 AC 367 ms
20,864 KB
testcase_06 AC 378 ms
20,608 KB
testcase_07 AC 361 ms
20,736 KB
testcase_08 AC 362 ms
20,864 KB
testcase_09 AC 363 ms
20,864 KB
testcase_10 AC 361 ms
20,480 KB
testcase_11 AC 380 ms
20,864 KB
testcase_12 AC 410 ms
20,608 KB
testcase_13 AC 370 ms
20,608 KB
testcase_14 AC 385 ms
20,608 KB
testcase_15 AC 437 ms
20,608 KB
testcase_16 AC 622 ms
20,480 KB
testcase_17 AC 356 ms
20,480 KB
testcase_18 AC 633 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(n,memo)
	if memo[n]!=0
		return memo[n]
	end
	
	if n==0
		return 1
	else
		return f(n/3,memo)+f(n/5,memo)
	end
end

def g(memo,n)
	if n<=1000000
		return memo[n]
	else
		return g(memo,n/3)+g(memo,n/5)
	end
end

memo=[0]*1000001
1000001.times{|i|
	memo[i]=f(i,memo)
}
puts g(memo,gets.to_i)
0