Python:如果不是想知道我的代码有啥问题,我自己在IDE上跑的还行啊 t,k = list(map(int,input().split())) res = [] import math def comb(n,m): return math.factorial(n)//(math.factorial(n-m)*math.factorial(m)) for i in range(t): a,b = list(map(int,input().split())) c = 0 for j in range(a,b+1): d = j//k ...