結果

問題 No.303 割れません
ユーザー kmjpkmjp
提出日時 2015-11-14 01:25:44
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,834 ms / 10,000 ms
コード長 293 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 183,720 KB
最終ジャッジ日時 2024-09-13 16:37:06
合計ジャッジ時間 25,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,388 KB
testcase_01 AC 75 ms
75,164 KB
testcase_02 AC 73 ms
75,660 KB
testcase_03 AC 1,000 ms
105,996 KB
testcase_04 AC 2,809 ms
182,840 KB
testcase_05 AC 2,803 ms
183,720 KB
testcase_06 AC 2,834 ms
183,040 KB
testcase_07 AC 2,209 ms
159,152 KB
testcase_08 AC 2,302 ms
162,292 KB
testcase_09 AC 2,273 ms
162,456 KB
testcase_10 AC 74 ms
75,292 KB
testcase_11 AC 2,820 ms
181,892 KB
testcase_12 AC 2,292 ms
163,332 KB
testcase_13 AC 1,204 ms
116,028 KB
testcase_14 AC 646 ms
95,744 KB
testcase_15 AC 415 ms
85,688 KB
testcase_16 AC 75 ms
75,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=input()

def fib(L):
	if L<3:
		return 1
	v1=v2=a=b=c=1
	d=0
	L-=2
	while L:
		if L%2:
			v2,v1=a*v2+b*v1,c*v2+d*v1
		L /= 2
		a,b,c,d=a*a+b*b,a*b+b*d,c*a+d*b,c*b+d*d
	return v2


if L==2:
	print 3
	print "INF"
else:
	ret = fib(L)
	
	if L%2==0:
		ret -= fib(L/2)**2
	
	print L
	print ret
	
0