Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

16
Le code de James.py Normal file
View File

@@ -0,0 +1,16 @@
sol = list()
MAX = 100
n = (1918, 1921, 1920, 1924, 1953, 1968)
for a in range(MAX):
for b in range(MAX):
for c in range(MAX):
sol.append((2**a)*(3**b)*(5**c))
sol = sorted(sol)
for i in n:
print(i, sol[7*i-1])