HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Forums > Discussion of problems > topic:


Problem "Multiplicator"

Владислав ОрловOct.11.2024 at 04:46:52 PM
0Мой код верный:
k = int(input())
s = int(input())
g = []
for i in range(2, s):
if s % (i**k) == 0:
n = s / (i ** k)
g.append(n)
print(min(g))
Но не проходит проверка по таймлайну.
Не понимаю как упростить код программы?


www.contester.ru