結果

問題 No.639 An Ordinary Sequence
ユーザー horiesinitihoriesiniti
提出日時 2018-03-28 10:20:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 667 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-10 13:06:04
合計ジャッジ時間 11,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 653 ms
19,968 KB
testcase_01 AC 667 ms
19,968 KB
testcase_02 AC 381 ms
20,096 KB
testcase_03 AC 391 ms
19,968 KB
testcase_04 AC 383 ms
20,224 KB
testcase_05 AC 385 ms
20,224 KB
testcase_06 AC 398 ms
20,096 KB
testcase_07 AC 388 ms
19,968 KB
testcase_08 AC 389 ms
20,096 KB
testcase_09 AC 386 ms
20,096 KB
testcase_10 AC 390 ms
20,096 KB
testcase_11 AC 388 ms
20,096 KB
testcase_12 AC 392 ms
19,968 KB
testcase_13 AC 397 ms
19,968 KB
testcase_14 AC 416 ms
20,096 KB
testcase_15 AC 464 ms
19,968 KB
testcase_16 AC 662 ms
20,096 KB
testcase_17 AC 385 ms
20,096 KB
testcase_18 AC 666 ms
20,096 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