String对象 res=str.charAt(1);//返回字符串中第n个字符(输出:i) res=str.charCodeAt(1);//返回第n个字符的ASCII编码(输出:105) res=String.fromCharCode(105,97);//根据ASCII编码返回指定字符,可指定多个(输出:ia) res=str.concat('yes');//连接字符串,相当于连接符+(输出:Will you set sail tonight?yes) res=str.indexOf('you…
题目链接 思路:按题目推一点点可以得出答案为 sigma (i-k)*n/i+d(n%i>=k) #include<bits/stdc++.h> using namespace std; const int N = 1e7+10; const int mod = 1e9+7; int n,k; int main(){ cin>>n>>k; int ans=0; for(int i=k+1;i<=n;i++) { int a=n/i; int b=i-k; i…