結果

問題 No.303 割れません
ユーザー pluto77pluto77
提出日時 2018-01-05 11:02:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,998 ms / 10,000 ms
コード長 416 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 207,488 KB
最終ジャッジ日時 2024-06-02 09:42:42
合計ジャッジ時間 27,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,520 KB
testcase_01 AC 76 ms
75,520 KB
testcase_02 AC 74 ms
75,648 KB
testcase_03 AC 1,062 ms
112,256 KB
testcase_04 AC 2,896 ms
204,928 KB
testcase_05 AC 2,907 ms
205,184 KB
testcase_06 AC 2,930 ms
207,488 KB
testcase_07 AC 2,256 ms
182,016 KB
testcase_08 AC 2,348 ms
180,736 KB
testcase_09 AC 2,329 ms
181,632 KB
testcase_10 AC 76 ms
75,392 KB
testcase_11 AC 2,998 ms
204,928 KB
testcase_12 AC 2,381 ms
181,760 KB
testcase_13 AC 1,330 ms
127,232 KB
testcase_14 AC 646 ms
98,048 KB
testcase_15 AC 440 ms
88,192 KB
testcase_16 AC 76 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_303

def mul(a,b):
 return [a[0]*b[0]+a[1]*b[2],
         a[0]*b[1]+a[1]*b[3],
         a[2]*b[0]+a[3]*b[2],
         a[2]*b[1]+a[3]*b[3]]

def fib(n):
 if n<=1:
  return n
 res=[1, 0, 0, 1]
 mx =[1, 1, 1, 0]
 while n>0:
  if n%2:
   res=mul(mx, res)
  mx=mul(mx, mx)
  n/=2
 return res[2]

l=int(raw_input())
if l==2:
 print 3
 print 'INF'
else:
 print l
 res=fib(l)
 if l%2==0:
  res-=fib(l/2)**2
 print res
0