From 3edad98480ba30557a3fabac2d2ff325e91c6ea3 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 26 Apr 2017 16:38:35 +0200 Subject: Moved all python files into a folder --- python/lswf.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 python/lswf.py (limited to 'python/lswf.py') diff --git a/python/lswf.py b/python/lswf.py new file mode 100644 index 0000000..7a309ad --- /dev/null +++ b/python/lswf.py @@ -0,0 +1,41 @@ +fib = [] +fib.append(1) +fib.append(1) + +def fibonacci(N): + for i in range(2, N): + fib.append(fib[i - 1] + fib[i - 2]) + + if fib[i] > N: + break + + return i + + +with open('input.txt', 'r') as fin: + N = int(fin.readline()) + +lst = fibonacci(N) + +fib.reverse() +print() + +somma = 0 +seq = [] +for i in range(0,len(fib)-1): + potSomma = somma + fib[i] + if potSomma < N: + somma = potSomma + seq.append(1) + else: + seq.append(0) + +seq.append(1) +seq.reverse() + +if N == 1 or N > 4: + seq.pop() + +with open('output.txt', 'w') as fout: + for i in seq: + fout.write(str(i)) -- cgit v1.2.3-18-g5258