結果

問題 No.303 割れません
ユーザー pluto77pluto77
提出日時 2018-01-05 11:02:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 3,465 ms / 10,000 ms
コード長 416 bytes
コンパイル時間 868 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 207,232 KB
最終ジャッジ日時 2024-12-23 05:56:54
合計ジャッジ時間 28,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
75,008 KB
testcase_01 AC 86 ms
75,264 KB
testcase_02 AC 86 ms
75,136 KB
testcase_03 AC 1,114 ms
111,616 KB
testcase_04 AC 3,022 ms
205,184 KB
testcase_05 AC 3,465 ms
205,184 KB
testcase_06 AC 3,157 ms
207,232 KB
testcase_07 AC 2,481 ms
181,888 KB
testcase_08 AC 2,612 ms
180,608 KB
testcase_09 AC 2,542 ms
181,376 KB
testcase_10 AC 87 ms
75,648 KB
testcase_11 AC 3,193 ms
204,544 KB
testcase_12 AC 2,500 ms
181,376 KB
testcase_13 AC 1,414 ms
126,592 KB
testcase_14 AC 720 ms
98,048 KB
testcase_15 AC 528 ms
88,064 KB
testcase_16 AC 90 ms
75,392 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