summaryrefslogtreecommitdiff
path: root/progs/a485.py
blob: 20165f45ae41983237e152a47282f47de4187b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
MAX = 3000 
def smartNumber(n): 
	primes = [0] * MAX 
	result = [] 
	for i in range(2, MAX): 
		if (primes[i] == 0): 
			primes[i] = 1 
			j = i * 2 
			while (j < MAX): 
				primes[j] -= 1 
				if ( (primes[j] + 3) == 0): 
					result.append(j) 
				j = j + i 
	result.sort() 
	return result[n - 1]