結果

問題 No.303 割れません
ユーザー kmjpkmjp
提出日時 2015-11-14 01:30:28
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,289 ms / 10,000 ms
コード長 300 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 76,332 KB
実行使用メモリ 158,468 KB
最終ジャッジ日時 2024-09-13 16:37:29
合計ジャッジ時間 21,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,552 KB
testcase_01 AC 71 ms
75,408 KB
testcase_02 AC 72 ms
75,564 KB
testcase_03 AC 838 ms
99,208 KB
testcase_04 AC 2,289 ms
157,092 KB
testcase_05 AC 2,267 ms
157,756 KB
testcase_06 AC 2,238 ms
158,468 KB
testcase_07 AC 1,787 ms
142,788 KB
testcase_08 AC 1,884 ms
142,492 KB
testcase_09 AC 1,848 ms
144,160 KB
testcase_10 AC 72 ms
75,180 KB
testcase_11 AC 2,273 ms
158,108 KB
testcase_12 AC 1,883 ms
143,092 KB
testcase_13 AC 1,024 ms
108,424 KB
testcase_14 AC 511 ms
90,784 KB
testcase_15 AC 355 ms
83,220 KB
testcase_16 AC 75 ms
75,304 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
		bc=b*c
		a,b,c,d=a*a+bc,b*(a+d),c*(a+d),bc+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