結果

問題 No.303 割れません
ユーザー cielciel
提出日時 2015-11-16 19:33:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,405 ms / 10,000 ms
コード長 154 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-13 15:27:41
合計ジャッジ時間 40,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
12,800 KB
testcase_01 AC 103 ms
13,056 KB
testcase_02 AC 103 ms
12,800 KB
testcase_03 AC 1,431 ms
20,608 KB
testcase_04 AC 4,399 ms
29,184 KB
testcase_05 AC 4,353 ms
26,496 KB
testcase_06 AC 4,355 ms
27,520 KB
testcase_07 AC 3,834 ms
24,704 KB
testcase_08 AC 4,059 ms
24,960 KB
testcase_09 AC 3,991 ms
24,576 KB
testcase_10 AC 103 ms
13,056 KB
testcase_11 AC 4,405 ms
26,624 KB
testcase_12 AC 4,077 ms
25,984 KB
testcase_13 AC 2,282 ms
24,960 KB
testcase_14 AC 904 ms
17,536 KB
testcase_15 AC 631 ms
17,664 KB
testcase_16 AC 102 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'matrix'
def fib(n)
	(Matrix[[1,1],[1,0]]**n)[1,0]
end

n=gets.to_i
if n==2
	p 3
	puts :INF
else
	r=fib(n)
	r-=fib(n/2)**2 if n%2==0
	p n
	p r
end
0