mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
14 lines
213 B
Python
14 lines
213 B
Python
def problem_p03281(input_data):
|
|
import numpy as np
|
|
|
|
a = np.zeros(201)
|
|
|
|
for d in range(1, 201, 2):
|
|
|
|
a[d :: 2 * d] += 1
|
|
|
|
a = (a == 8).cumsum()
|
|
|
|
N = int(eval(input_data))
|
|
|
|
return a[N]
|