結果

問題 No.303 割れません
ユーザー pluto77pluto77
提出日時 2018-01-05 11:02:16
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 416 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 7,332 KB
実行使用メモリ 11,532 KB
最終ジャッジ日時 2024-12-23 05:53:28
合計ジャッジ時間 92,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,820 KB
testcase_01 AC 10 ms
6,816 KB
testcase_02 AC 10 ms
6,820 KB
testcase_03 AC 3,223 ms
8,500 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 8,664 ms
11,248 KB
testcase_08 AC 9,182 ms
11,360 KB
testcase_09 AC 9,105 ms
11,248 KB
testcase_10 AC 10 ms
6,272 KB
testcase_11 TLE -
testcase_12 AC 9,740 ms
11,276 KB
testcase_13 AC 4,961 ms
8,852 KB
testcase_14 AC 1,950 ms
8,740 KB
testcase_15 AC 1,176 ms
7,552 KB
testcase_16 AC 10 ms
6,820 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