codeflash-internal/experiments/pie_test_set/p03266.py

22 lines
331 B
Python

def problem_p03266(input_data):
N, K = list(map(int, input_data.split()))
num = [0] * K
for i in range(1, N + 1):
num[i % K] += 1
res = 0
for a in range(K):
b = (K - a) % K
c = (K - a) % K
if (b + c) % K == 0:
res += num[a] * num[b] * num[c]
return res