Трапезников Михаил 520 CubeSum 606
Михальцов Данила, 528 CubeSum 395
f1n = int(input())f1n = int(input())
n2lower_n = 1n2a = 1
3higher_n = int(n ** (1 / 3))3b = int(n ** (1 / 3))
4cnt = 04ans = 0
5while lower_n <= higher_n:5while a <= b:
6    ans = lower_n ** 3 + higher_n ** 36    res = a ** 3 + b ** 3
7    if ans > n:7    if res > n:
8        higher_n -= 18        b -= 1
9    elif ans < n:9    elif res < n:
10        lower_n += 110        a += 1
11    else:11    else:
t12        cnt += 1t12        ans += 1
13        lower_n += 113        a += 1
14print(cnt)14print(ans)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op