結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
12,800 KB
testcase_01 AC 104 ms
13,056 KB
testcase_02 AC 102 ms
13,056 KB
testcase_03 AC 1,438 ms
20,608 KB
testcase_04 AC 4,391 ms
29,312 KB
testcase_05 AC 4,343 ms
26,752 KB
testcase_06 AC 4,372 ms
27,520 KB
testcase_07 AC 3,839 ms
25,088 KB
testcase_08 AC 4,048 ms
25,472 KB
testcase_09 AC 3,980 ms
25,088 KB
testcase_10 AC 102 ms
13,056 KB
testcase_11 AC 4,415 ms
26,880 KB
testcase_12 AC 4,076 ms
26,368 KB
testcase_13 AC 2,274 ms
25,216 KB
testcase_14 AC 901 ms
17,664 KB
testcase_15 AC 631 ms
17,664 KB
testcase_16 AC 104 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'matrix'
f=->(n){(Matrix[[1,1],[1,0]]**n)[1,0]}
	p 2==(n=gets.to_i) ? 3 : n
	puts n==2 ? :INF : f[n]-(n%2>0?0:f[n/2]**2)
0