結果

問題 No.303 割れません
ユーザー pluto77pluto77
提出日時 2018-01-05 11:26:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,655 ms / 10,000 ms
コード長 309 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 168,960 KB
最終ジャッジ日時 2024-12-23 05:58:03
合計ジャッジ時間 23,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
75,520 KB
testcase_01 AC 86 ms
75,136 KB
testcase_02 AC 84 ms
75,136 KB
testcase_03 AC 883 ms
100,480 KB
testcase_04 AC 2,425 ms
168,960 KB
testcase_05 AC 2,564 ms
168,064 KB
testcase_06 AC 2,633 ms
167,168 KB
testcase_07 AC 2,063 ms
148,480 KB
testcase_08 AC 2,170 ms
150,784 KB
testcase_09 AC 2,143 ms
152,576 KB
testcase_10 AC 91 ms
75,392 KB
testcase_11 AC 2,655 ms
167,680 KB
testcase_12 AC 2,151 ms
151,424 KB
testcase_13 AC 1,154 ms
111,744 KB
testcase_14 AC 592 ms
92,544 KB
testcase_15 AC 398 ms
84,608 KB
testcase_16 AC 91 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_303

def fib(n):
 if n<3:
	return 1
 n-=2
 a, b, c, d, x, y, = 1, 1, 1, 0, 1, 1
 while n>0:
	if n&1==1:
	 x,y=a*x+b*y,c*x+d*y
	a,b,c,d=a*a+b*c,b*(a+d),c*(a+d),b*c+d*d
	n/=2
 return x

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