結果

問題 No.64 XORフィボナッチ数列
ユーザー finefine
提出日時 2015-10-15 23:09:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 233 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-07-21 16:41:01
合計ジャッジ時間 8,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
17,536 KB
testcase_01 AC 101 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 89 ms
12,032 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 87 ms
12,032 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def fibo(f_0,f_1,n)
	case n
	when 0
		return f_0
	when 1
		return f_1
	else
		f = 0
		(n - 1).times{
			f = f_0 ^ f_1
			f_0 = f_1
			f_1 = f
		}
		return f
	end
end

f_0,f_1,n = gets.chomp.split(" ").map(&:to_i)
puts fibo(f_0,f_1,n)
0