Светлана Глаголева M-105 ФКИ CubeSum 2531
Михальцов Данила, 528 CubeSum 395
n1N = int(input())n1n = int(input())
2A = 12a = 1
3B = round(N ** (1 / 3))3b = int(n ** (1 / 3))
4count = 04ans = 0
5while A <= B:5while a <= b:
6    F = A ** 3 + B ** 36    res = a ** 3 + b ** 3
7    if F > N:7    if res > n:
8        B -= 18        b -= 1
9    elif F < N:9    elif res < n:
10        A += 110        a += 1
11    else:11    else:
t12        count += 1t12        ans += 1
13        B -= 113        a += 1
14print(count)14print(ans)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op