結果

問題 No.303 割れません
ユーザー pluto77pluto77
提出日時 2018-01-05 11:02:16
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 416 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 11,536 KB
最終ジャッジ日時 2024-06-02 09:41:27
合計ジャッジ時間 88,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,144 KB
testcase_01 AC 8 ms
6,272 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 3,073 ms
8,496 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 8,502 ms
11,372 KB
testcase_08 AC 8,921 ms
11,108 KB
testcase_09 AC 8,869 ms
11,248 KB
testcase_10 AC 9 ms
6,272 KB
testcase_11 TLE -
testcase_12 AC 8,906 ms
11,148 KB
testcase_13 AC 4,737 ms
8,852 KB
testcase_14 AC 1,870 ms
8,736 KB
testcase_15 AC 1,128 ms
7,552 KB
testcase_16 AC 9 ms
6,272 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